From c42d86ac0d44b44076bcdae021ee1c8e6ac32f6b Mon Sep 17 00:00:00 2001 From: joaquintides Date: Tue, 11 Oct 2022 10:52:51 +0200 Subject: [PATCH] reverted --- 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 7486c350..c5045685 100644 --- a/include/boost/unordered/detail/foa.hpp +++ b/include/boost/unordered/detail/foa.hpp @@ -1114,12 +1114,12 @@ public: typename std::enable_if< std::is_constructible::value>* =nullptr > - /*BOOST_FORCEINLINE*/ std::pair insert(T&& x) + BOOST_FORCEINLINE std::pair insert(T&& x) { return emplace_impl(value_from(std::forward(x))); } - /*BOOST_FORCEINLINE*/ std::pair insert(init_type&& x) + BOOST_FORCEINLINE std::pair insert(init_type&& x) { return emplace_impl(std::move(x)); }