From 2070cbe2cc83edbc8113501b2b4935ada4727492 Mon Sep 17 00:00:00 2001 From: joaquintides Date: Wed, 15 Mar 2023 09:00:31 +0100 Subject: [PATCH] fixed regression in table_core(table_core&&) --- include/boost/unordered/detail/foa/core.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/unordered/detail/foa/core.hpp b/include/boost/unordered/detail/foa/core.hpp index 7108dee6..79e49ae4 100644 --- a/include/boost/unordered/detail/foa/core.hpp +++ b/include/boost/unordered/detail/foa/core.hpp @@ -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_):