aboutsummaryrefslogtreecommitdiff
path: root/libbutl/small-vector.mxx
diff options
context:
space:
mode:
Diffstat (limited to 'libbutl/small-vector.mxx')
-rw-r--r--libbutl/small-vector.mxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/libbutl/small-vector.mxx b/libbutl/small-vector.mxx
index 2a92182..7f9bb1e 100644
--- a/libbutl/small-vector.mxx
+++ b/libbutl/small-vector.mxx
@@ -125,6 +125,11 @@ LIBBUTL_MODEXPORT namespace butl
reserve ();
*this = std::move (v); // Delegate to operator=(&&).
+
+ // Note that in contrast to the move assignment operator, the
+ // constructor must clear the other vector.
+ //
+ v.clear ();
}
small_vector&