xo-arena: bugfix in DArenaVector move ctor

This commit is contained in:
Roland Conybeare 2026-01-06 17:19:35 -05:00
commit 3415e62988

View file

@ -104,7 +104,9 @@ namespace xo {
template <typename T>
DArenaVector<T>::DArenaVector(DArenaVector && other)
: size_{other.size_}, store_{std::move(other.store_)}
{}
{
other.size_ = 0;
}
template <typename T>
DArenaVector<T>::~DArenaVector()