From 73ad89239349da8b1d5147dbaca6cc96130caa44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Sat, 15 Sep 2018 00:51:13 +0200 Subject: [PATCH] Make set::equal_range BOOST_CONTAINER_FORCEINLINE --- include/boost/container/set.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/container/set.hpp b/include/boost/container/set.hpp index 68425be..c2e6890 100644 --- a/include/boost/container/set.hpp +++ b/include/boost/container/set.hpp @@ -875,7 +875,7 @@ class set //! //! Complexity: Logarithmic template - std::pair equal_range(const K& x) + BOOST_CONTAINER_FORCEINLINE std::pair equal_range(const K& x) { return this->base_t::lower_bound_range(x); } //! Requires: This overload is available only if @@ -885,7 +885,7 @@ class set //! //! Complexity: Logarithmic template - std::pair equal_range(const K& x) const + BOOST_CONTAINER_FORCEINLINE std::pair equal_range(const K& x) const { return this->base_t::lower_bound_range(x); } #if defined(BOOST_CONTAINER_DOXYGEN_INVOKED)