Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r86023 - trunk/boost/concept
From: steveire_at_[hidden]
Date: 2013-09-29 20:18:01


Author: skelly
Date: 2013-09-29 20:18:01 EDT (Sun, 29 Sep 2013)
New Revision: 86023
URL: http://svn.boost.org/trac/boost/changeset/86023

Log:
Concept: Remove obsolete MSVC version checks.

Text files modified:
   trunk/boost/concept/requires.hpp | 8 +-------
   1 files changed, 1 insertions(+), 7 deletions(-)

Modified: trunk/boost/concept/requires.hpp
==============================================================================
--- trunk/boost/concept/requires.hpp Sun Sep 29 20:17:47 2013 (r86022)
+++ trunk/boost/concept/requires.hpp 2013-09-29 20:18:01 EDT (Sun, 29 Sep 2013) (r86023)
@@ -15,9 +15,6 @@
 template <class Model, class More>
 struct requires_ : More
 {
-# if BOOST_WORKAROUND(BOOST_MSVC, <= 1300)
- typedef typename More::type type;
-# endif
     BOOST_CONCEPT_ASSERT((Model));
 };
 
@@ -34,9 +31,6 @@
 template <int check, class Result>
 struct Requires_ : ::boost::parameter::aux::unaryfunptr_arg_type<Result>
 {
-# if BOOST_WORKAROUND(BOOST_MSVC, <= 1300)
- typedef typename ::boost::parameter::aux::unaryfunptr_arg_type<Result>::type type;
-# endif
 };
 
 # if BOOST_WORKAROUND(BOOST_INTEL_WIN, BOOST_TESTED_AT(1010))
@@ -45,7 +39,7 @@
 # define BOOST_CONCEPT_REQUIRES_(r,data,t) + (::boost::_requires_<void(*)t>::value)
 # endif
 
-#if defined(NDEBUG) || BOOST_WORKAROUND(BOOST_MSVC, < 1300)
+#if defined(NDEBUG)
 
 # define BOOST_CONCEPT_REQUIRES(models, result) \
     typename ::boost::parameter::aux::unaryfunptr_arg_type<void(*)result>::type


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