Changed copy constructor signature of std::array implementation

This commit is contained in:
Andreas Tsouchlos 2022-03-17 22:11:30 +01:00
parent b29695e148
commit ee1153c393

View File

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