From d9dcaf8ba10bc2c4ad73ca8c4023c904b8531087 Mon Sep 17 00:00:00 2001 From: joaquintides Date: Fri, 30 Sep 2022 16:17:40 +0200 Subject: [PATCH] tried different formulation of prior --- include/boost/unordered/detail/foa.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/boost/unordered/detail/foa.hpp b/include/boost/unordered/detail/foa.hpp index 29aab28e..e94b2e60 100644 --- a/include/boost/unordered/detail/foa.hpp +++ b/include/boost/unordered/detail/foa.hpp @@ -1022,7 +1022,8 @@ private: static group_type* dummy_groups()noexcept { - static constexpr group_type::dummy_group_type storage[size_policy::min_size()]={}; + static constexpr group_type::dummy_group_type storage[size_policy::min_size()]= + {group_type::dummy_group_type(),}; return reinterpret_cast( const_cast(storage)); }