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)