fixed regression in table_core(table_core&&)

This commit is contained in:
joaquintides
2023-03-15 09:00:31 +01:00
committed by Christian Mazakas
parent 8198b9c57c
commit 2070cbe2cc

View File

@ -1209,7 +1209,7 @@ public:
{
x.arrays=x.new_arrays(0);
x.ml=x.initial_max_load();
x.size_=std::size_t(x.size_);
x.size_=0;
}
table_core(const table_core& x,const Allocator& al_):