diff --git a/xo-arena/include/xo/arena/DArenaVector.hpp b/xo-arena/include/xo/arena/DArenaVector.hpp index 32eb0119..a85f8158 100644 --- a/xo-arena/include/xo/arena/DArenaVector.hpp +++ b/xo-arena/include/xo/arena/DArenaVector.hpp @@ -104,7 +104,9 @@ namespace xo { template DArenaVector::DArenaVector(DArenaVector && other) : size_{other.size_}, store_{std::move(other.store_)} - {} + { + other.size_ = 0; + } template DArenaVector::~DArenaVector()