feature/no_std_lib #9

Merged
an.tsouchlos merged 17 commits from feature/no_std_lib into master 2022-03-17 22:45:10 +00:00
Showing only changes of commit ee1153c393 - Show all commits

View File

@ -237,13 +237,10 @@ public:
} }
constexpr array() noexcept = default; constexpr array() noexcept = default;
constexpr array(const array&) = default;
constexpr array(array&) = default;
constexpr array(array&&) = default; constexpr array(array&&) = default;
constexpr array& operator=(array& other) = default; constexpr array& operator=(array& other) = default;
constexpr array& operator=(array&& other) = default; constexpr array& operator=(array&& other) = default;
constexpr void swap(array<data_t, t_size>& other) noexcept { constexpr void swap(array<data_t, t_size>& other) noexcept {