$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r86263 - trunk/boost/mpl/aux_/config
From: steveire_at_[hidden]
Date: 2013-10-12 09:07:27
Author: skelly
Date: 2013-10-12 09:07:26 EDT (Sat, 12 Oct 2013)
New Revision: 86263
URL: http://svn.boost.org/trac/boost/changeset/86263
Log:
Fix mpl on MSVC.
MSVC defines this macro to 0.
Text files modified:
trunk/boost/mpl/aux_/config/typeof.hpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Modified: trunk/boost/mpl/aux_/config/typeof.hpp
==============================================================================
--- trunk/boost/mpl/aux_/config/typeof.hpp Sat Oct 12 08:02:11 2013 (r86262)
+++ trunk/boost/mpl/aux_/config/typeof.hpp 2013-10-12 09:07:26 EDT (Sat, 12 Oct 2013) (r86263)
@@ -18,7 +18,7 @@
#if !defined(BOOST_MPL_CFG_HAS_TYPEOF) \
&& !defined(BOOST_MPL_PREPROCESSING_MODE) \
- && ( defined(BOOST_MPL_CFG_GCC) \
+ && ( defined(BOOST_MPL_CFG_GCC) && BOOST_MPL_CFG_GCC > 0 \
|| defined(__MWERKS__) && __MWERKS__ >= 0x3000 \
)