Changed copy constructor signature of std::array implementation
This commit is contained in:
parent
b29695e148
commit
ee1153c393
@ -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 {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user