Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r86101 - trunk/boost
From: steveire_at_[hidden]
Date: 2013-10-01 04:41:26


Author: skelly
Date: 2013-10-01 04:41:26 EDT (Tue, 01 Oct 2013)
New Revision: 86101
URL: http://svn.boost.org/trac/boost/changeset/86101

Log:
MultiIndex: Remove obsolete MSVC version checks.

Text files modified:
   trunk/boost/multi_index_container.hpp | 12 ++++--------
   1 files changed, 4 insertions(+), 8 deletions(-)

Modified: trunk/boost/multi_index_container.hpp
==============================================================================
--- trunk/boost/multi_index_container.hpp Tue Oct 1 04:41:13 2013 (r86100)
+++ trunk/boost/multi_index_container.hpp 2013-10-01 04:41:26 EDT (Tue, 01 Oct 2013) (r86101)
@@ -1131,8 +1131,7 @@
     Value,IndexSpecifierList,Allocator> multi_index_type;
   typedef typename nth_index<multi_index_type,N>::type index;
 
-#if (!defined(BOOST_MSVC)||!(BOOST_MSVC<1310))&& /* MSVC++ 6.0/7.0 fails */\
- (!defined(__SUNPRO_CC)||!(__SUNPRO_CC<0x580)) /* as does Sun C++ 5.7 */
+#if !defined(__SUNPRO_CC)||!(__SUNPRO_CC<0x580) /* Sun C++ 5.7 fails */
   BOOST_STATIC_ASSERT((
     mpl::contains<
       BOOST_DEDUCED_TYPENAME multi_index_type::iterator_type_list,
@@ -1165,8 +1164,7 @@
     Value,IndexSpecifierList,Allocator> multi_index_type;
   typedef typename nth_index<multi_index_type,N>::type index;
 
-#if (!defined(BOOST_MSVC)||!(BOOST_MSVC<1310))&& /* MSVC++ 6.0/7.0 fails */\
- (!defined(__SUNPRO_CC)||!(__SUNPRO_CC<0x580)) /* as does Sun C++ 5.7 */
+#if !defined(__SUNPRO_CC)||!(__SUNPRO_CC<0x580) /* Sun C++ 5.7 fails */
   BOOST_STATIC_ASSERT((
     mpl::contains<
       BOOST_DEDUCED_TYPENAME multi_index_type::iterator_type_list,
@@ -1219,8 +1217,7 @@
   typedef typename ::boost::multi_index::index<
     multi_index_type,Tag>::type index;
 
-#if (!defined(BOOST_MSVC)||!(BOOST_MSVC<1310))&& /* MSVC++ 6.0/7.0 fails */\
- (!defined(__SUNPRO_CC)||!(__SUNPRO_CC<0x580)) /* as does Sun C++ 5.7 */
+#if !defined(__SUNPRO_CC)||!(__SUNPRO_CC<0x580) /* Sun C++ 5.7 fails */
   BOOST_STATIC_ASSERT((
     mpl::contains<
       BOOST_DEDUCED_TYPENAME multi_index_type::iterator_type_list,
@@ -1254,8 +1251,7 @@
   typedef typename ::boost::multi_index::index<
     multi_index_type,Tag>::type index;
 
-#if (!defined(BOOST_MSVC)||!(BOOST_MSVC<1310))&& /* MSVC++ 6.0/7.0 fails */\
- (!defined(__SUNPRO_CC)||!(__SUNPRO_CC<0x580)) /* as does Sun C++ 5.7 */
+#if !defined(__SUNPRO_CC)||!(__SUNPRO_CC<0x580) /* Sun C++ 5.7 fails */
   BOOST_STATIC_ASSERT((
     mpl::contains<
       BOOST_DEDUCED_TYPENAME multi_index_type::iterator_type_list,


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk