From 316eeea9830751e4e65fc022e34c9112ac595d17 Mon Sep 17 00:00:00 2001 From: joaquintides Date: Tue, 11 Oct 2022 10:46:07 +0200 Subject: [PATCH] dropped BOOST_FORCEINLINE in insert --- 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 c5045685..7486c350 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)); }