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)); }