From 59c84cb744767296da389261f605d85962eec816 Mon Sep 17 00:00:00 2001 From: joaquintides Date: Tue, 11 Oct 2022 17:20:22 +0200 Subject: [PATCH] dropped BOOST_FORCEINLINE in brace-init insert --- 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 b743cc21..864884f6 100644 --- a/include/boost/unordered/detail/foa.hpp +++ b/include/boost/unordered/detail/foa.hpp @@ -1112,7 +1112,7 @@ public: return emplace_impl(value_from(std::forward(x))); } - BOOST_FORCEINLINE std::pair insert(value_type&& x) + /*BOOST_FORCEINLINE*/ std::pair insert(value_type&& x) { return emplace_impl(value_from(std::move(x))); }