From 38f9cb750aa45b9b69125ea3387b517f5f60cc15 Mon Sep 17 00:00:00 2001 From: joaquintides Date: Fri, 7 Oct 2022 12:17:16 +0200 Subject: [PATCH] s/value_type/init_type --- include/boost/unordered/detail/foa.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/unordered/detail/foa.hpp b/include/boost/unordered/detail/foa.hpp index a48e777f..6fcd38e8 100644 --- a/include/boost/unordered/detail/foa.hpp +++ b/include/boost/unordered/detail/foa.hpp @@ -1048,7 +1048,7 @@ public: template BOOST_FORCEINLINE std::pair emplace(Args&&... args) { - return emplace_impl(value_type(std::forward(args)...)); + return emplace_impl(init_type(std::forward(args)...)); } template