From 18a664c4a66db6ff9e9a8071f7b636de6ba5b25e Mon Sep 17 00:00:00 2001 From: Christian Mazakas Date: Wed, 1 Feb 2023 10:25:50 -0800 Subject: [PATCH] Experiment for failing OSX CI --- include/boost/unordered/detail/foa.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/unordered/detail/foa.hpp b/include/boost/unordered/detail/foa.hpp index 5731cc41..7e598aff 100644 --- a/include/boost/unordered/detail/foa.hpp +++ b/include/boost/unordered/detail/foa.hpp @@ -1394,9 +1394,9 @@ public: * unconditionally allocates via `type_policy::construct()`. */ return emplace_dispatch( - std::is_constructible< + std::is_same< value_type, - emplace_type&&>{}, + element_type>{}, std::forward(args)...); }