summaryrefslogtreecommitdiffstats
path: root/raul/Array.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-07-17 20:05:42 +0200
committerDavid Robillard <d@drobilla.net>2020-07-17 20:44:52 +0200
commitd44254fff0387e0c623715a368d43e3e191b7765 (patch)
tree289d0b2e01ba0dad3793c8495d4d6cd6d4d85271 /raul/Array.hpp
parentb50a5872fca8a4086502d7c19e80bc9992782079 (diff)
downloadraul-d44254fff0387e0c623715a368d43e3e191b7765.tar.gz
raul-d44254fff0387e0c623715a368d43e3e191b7765.tar.bz2
raul-d44254fff0387e0c623715a368d43e3e191b7765.zip
Avoid mismatched exception specification warnings on MacOS
Diffstat (limited to 'raul/Array.hpp')
-rw-r--r--raul/Array.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/raul/Array.hpp b/raul/Array.hpp
index 0675701..5ba57a5 100644
--- a/raul/Array.hpp
+++ b/raul/Array.hpp
@@ -75,9 +75,9 @@ public:
}
}
- Array(Array<T>&& array) noexcept = default;
+ Array(Array<T>&& array) = default;
- Array<T>& operator=(Array<T>&&) noexcept = default;
+ Array<T>& operator=(Array<T>&&) = default;
Array(size_t size, const Array<T>& contents)
: _size(size)