From 28b12d72643c3159fd61ac679920fda09a181a31 Mon Sep 17 00:00:00 2001 From: Stephen Kelly Date: Mon, 30 Sep 2013 00:18:17 +0000 Subject: [PATCH] Algorithm: Remove obsolete MSVC version checks. [SVN r86024] --- include/boost/algorithm/string/detail/finder.hpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/boost/algorithm/string/detail/finder.hpp b/include/boost/algorithm/string/detail/finder.hpp index 209ce0b..a2a9582 100644 --- a/include/boost/algorithm/string/detail/finder.hpp +++ b/include/boost/algorithm/string/detail/finder.hpp @@ -622,8 +622,6 @@ namespace boost { { #if BOOST_WORKAROUND( __MWERKS__, <= 0x3003 ) return iterator_range(this->m_Range); -#elif BOOST_WORKAROUND(BOOST_MSVC, <= 1300) - return iterator_range(m_Range.begin(), m_Range.end()); #else return m_Range; #endif