Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r85957 - trunk/boost/mpl
From: steveire_at_[hidden]
Date: 2013-09-26 09:06:05


Author: skelly
Date: 2013-09-26 09:06:05 EDT (Thu, 26 Sep 2013)
New Revision: 85957
URL: http://svn.boost.org/trac/boost/changeset/85957

Log:
MPL: Remove use of obsolete macro.

Text files modified:
   trunk/boost/mpl/has_xxx.hpp | 5 ++---
   1 files changed, 2 insertions(+), 3 deletions(-)

Modified: trunk/boost/mpl/has_xxx.hpp
==============================================================================
--- trunk/boost/mpl/has_xxx.hpp Thu Sep 26 09:05:50 2013 (r85956)
+++ trunk/boost/mpl/has_xxx.hpp 2013-09-26 09:06:05 EDT (Thu, 26 Sep 2013) (r85957)
@@ -22,7 +22,6 @@
 #include <boost/mpl/aux_/yes_no.hpp>
 #include <boost/mpl/aux_/config/gcc.hpp>
 #include <boost/mpl/aux_/config/has_xxx.hpp>
-#include <boost/mpl/aux_/config/msvc_typename.hpp>
 #include <boost/mpl/aux_/config/msvc.hpp>
 #include <boost/mpl/aux_/config/static_constant.hpp>
 #include <boost/mpl/aux_/config/workaround.hpp>
@@ -128,7 +127,7 @@
         template< typename U > \
         static boost::mpl::aux::yes_tag test( \
               boost::mpl::aux::type_wrapper<U> const volatile* \
- , boost::mpl::aux::type_wrapper<BOOST_MSVC_TYPENAME U::name>* = 0 \
+ , boost::mpl::aux::type_wrapper<typename U::name>* = 0 \
             ); \
     \
         static boost::mpl::aux::no_tag test(...); \
@@ -401,7 +400,7 @@
                 BOOST_MPL_HAS_MEMBER_INTROSPECTION_SUBSTITUTE_NAME_WITH_TEMPLATE_SFINAE( \
                     args, n \
                 )< \
- BOOST_MSVC_TYPENAME U::BOOST_PP_ARRAY_ELEM(1, args)< > \
+ typename U::BOOST_PP_ARRAY_ELEM(1, args)< > \
>::type \
> { \
             BOOST_STATIC_CONSTANT(bool, value = true); \


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