diff --git a/include/boost/algorithm/string/detail/finder.hpp b/include/boost/algorithm/string/detail/finder.hpp index e6513a3..d35bf44 100644 --- a/include/boost/algorithm/string/detail/finder.hpp +++ b/include/boost/algorithm/string/detail/finder.hpp @@ -516,7 +516,11 @@ namespace boost { ForwardIterator2T, ForwardIterator2T ) const { + #if BOOST_WORKAROUND( __MWERKS__, <= 0x3003 ) + return iterator_range(this->m_Range); + #else return m_Range; + #endif } private: