Algorithm: Remove obsolete MSVC version checks.

[SVN r86024]
This commit is contained in:
Stephen Kelly
2014-03-23 14:30:10 -07:00
committed by Marshall Clow
parent 4d28d579e3
commit 28b12d7264
@@ -622,8 +622,6 @@ namespace boost {
{
#if BOOST_WORKAROUND( __MWERKS__, <= 0x3003 )
return iterator_range<const ForwardIterator2T>(this->m_Range);
#elif BOOST_WORKAROUND(BOOST_MSVC, <= 1300)
return iterator_range<ForwardIterator2T>(m_Range.begin(), m_Range.end());
#else
return m_Range;
#endif