aboutsummaryrefslogtreecommitdiff
path: root/libbutl
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2022-11-09 20:50:52 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2022-11-09 21:43:53 +0300
commit9d13afaf232368da54b8aacc1cd737e6dad92de2 (patch)
tree10a8fdabe67fa9918242e5f8cb1e4c1595cbf1d4 /libbutl
parent8ecdfc2e77068b357971fb85ffa9837140d13834 (diff)
Add noexcept specifier to small_vector(small_vector&&)
Diffstat (limited to 'libbutl')
-rw-r--r--libbutl/small-vector.hxx2
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)