diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2024-02-02 01:25:38 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2024-02-02 01:25:38 +0000 |
commit | 394d165d6877afe6490bad49f8b957492c5ac3e4 (patch) | |
tree | d72d64330968d2e1fccbb374eb720461983990ae /lib | |
parent | Merge branch 'geo-shadows' (diff) | |
download | ilt-394d165d6877afe6490bad49f8b957492c5ac3e4.tar.bz2 ilt-394d165d6877afe6490bad49f8b957492c5ac3e4.tar.xz ilt-394d165d6877afe6490bad49f8b957492c5ac3e4.zip |
Fix warnings in test-glContainer
Also updates static asserts to requirements
Diffstat (limited to 'lib')
-rw-r--r-- | lib/glContainer.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/glContainer.h b/lib/glContainer.h index 2ccc1c2..b4238d5 100644 --- a/lib/glContainer.h +++ b/lib/glContainer.h @@ -272,6 +272,7 @@ public: void resize(size_type newSize) + requires std::is_default_constructible_v<T> { if (newSize == size_) { return; @@ -327,6 +328,7 @@ public: template<typename... P> reference_type emplace_back(P &&... ps) + requires std::is_constructible_v<T, P...> { auto newSize = size_ + 1; reserve(newSize); @@ -339,8 +341,8 @@ public: template<typename... P> iterator emplace(iterator pos, P &&... ps) + requires std::is_nothrow_constructible_v<T, P...> { - static_assert(std::is_nothrow_constructible_v<T, P...>); auto newSize = size_ + 1; const auto idx = pos - begin(); reserve(newSize); @@ -355,6 +357,7 @@ public: reference_type push_back(T p) + requires std::is_move_constructible_v<T> { auto newSize = size_ + 1; reserve(newSize); @@ -366,8 +369,8 @@ public: iterator insert(iterator pos, T p) + requires std::is_nothrow_move_constructible_v<T> { - static_assert(std::is_nothrow_move_constructible_v<T>); auto newSize = size_ + 1; const auto idx = pos - begin(); reserve(newSize); |