$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r85948 - trunk/boost/mpl/aux_
From: steveire_at_[hidden]
Date: 2013-09-26 05:47:38
Author: skelly
Date: 2013-09-26 05:47:38 EDT (Thu, 26 Sep 2013)
New Revision: 85948
URL: http://svn.boost.org/trac/boost/changeset/85948
Log:
MPL: Remove workaround for no-longer-supported MSVC
Text files modified: 
   trunk/boost/mpl/aux_/O1_size_impl.hpp |     5 ++---                                   
   1 files changed, 2 insertions(+), 3 deletions(-)
Modified: trunk/boost/mpl/aux_/O1_size_impl.hpp
==============================================================================
--- trunk/boost/mpl/aux_/O1_size_impl.hpp	Thu Sep 26 05:47:19 2013	(r85947)
+++ trunk/boost/mpl/aux_/O1_size_impl.hpp	2013-09-26 05:47:38 EDT (Thu, 26 Sep 2013)	(r85948)
@@ -29,8 +29,7 @@
 // member, and -1 otherwise; conrete sequences might override it by 
 // specializing either the 'O1_size_impl' or the primary 'O1_size' template
 
-#   if !BOOST_WORKAROUND(BOOST_MSVC, < 1300) \
-    && !BOOST_WORKAROUND(__MWERKS__, BOOST_TESTED_AT(0x3003))
+#   if !BOOST_WORKAROUND(__MWERKS__, BOOST_TESTED_AT(0x3003))
 
 namespace aux {
 template< typename Sequence > struct O1_size_impl
@@ -69,7 +68,7 @@
     };
 };
 
-#   else // BOOST_MSVC
+#   else // __MWERKS__
 
 template< typename Tag >
 struct O1_size_impl