diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2022-11-09 20:50:52 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2022-11-09 21:43:53 +0300 |
commit | 9d13afaf232368da54b8aacc1cd737e6dad92de2 (patch) | |
tree | 10a8fdabe67fa9918242e5f8cb1e4c1595cbf1d4 | |
parent | 8ecdfc2e77068b357971fb85ffa9837140d13834 (diff) |
Add noexcept specifier to small_vector(small_vector&&)
-rw-r--r-- | libbutl/small-vector.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbutl/small-vector.hxx b/libbutl/small-vector.hxx index f0594b1..f2d2a80 100644 --- a/libbutl/small-vector.hxx +++ b/libbutl/small-vector.hxx @@ -104,7 +104,7 @@ namespace butl return *this; } - small_vector (small_vector&& v) + small_vector (small_vector&& v) noexcept : base_type (allocator_type (this)) { if (v.size () <= N) |