From 6f342bf1193955d89c06df506e559beebda6c7ea Mon Sep 17 00:00:00 2001 From: Christian Mazakas Date: Tue, 23 Aug 2022 11:11:11 -0700 Subject: [PATCH] Set default_bucket_count to zero --- include/boost/unordered/detail/implementation.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/unordered/detail/implementation.hpp b/include/boost/unordered/detail/implementation.hpp index 37323675..c81cf960 100644 --- a/include/boost/unordered/detail/implementation.hpp +++ b/include/boost/unordered/detail/implementation.hpp @@ -200,7 +200,7 @@ namespace boost { template struct table; static const float minimum_max_load_factor = 1e-3f; - static const std::size_t default_bucket_count = 11; + static const std::size_t default_bucket_count = 0; struct move_tag {