|
Boost-Commit : |
From: bdawes_at_[hidden]
Date: 2008-03-26 13:13:05
Author: bemandawes
Date: 2008-03-26 13:13:05 EDT (Wed, 26 Mar 2008)
New Revision: 43872
URL: http://svn.boost.org/trac/boost/changeset/43872
Log:
Apply changeset 43865, fixing #1718
Text files modified:
branches/release/boost/mpl/aux_/preprocessor/is_seq.hpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Modified: branches/release/boost/mpl/aux_/preprocessor/is_seq.hpp
==============================================================================
--- branches/release/boost/mpl/aux_/preprocessor/is_seq.hpp (original)
+++ branches/release/boost/mpl/aux_/preprocessor/is_seq.hpp 2008-03-26 13:13:05 EDT (Wed, 26 Mar 2008)
@@ -27,7 +27,7 @@
// BOOST_PP_ASSERT( BOOST_MPL_PP_IS_SEQ( (int) ) )
// BOOST_PP_ASSERT( BOOST_MPL_PP_IS_SEQ( (1)(2) ) )
-#if BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_BCC()
+#if (BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_BCC()) || defined(_MSC_VER) && defined(__INTEL_COMPILER) && __INTEL_COMPILER == 1010
# define BOOST_MPL_PP_IS_SEQ(seq) BOOST_PP_DEC( BOOST_PP_SEQ_SIZE( BOOST_MPL_PP_IS_SEQ_(seq) ) )
# define BOOST_MPL_PP_IS_SEQ_(seq) BOOST_MPL_PP_IS_SEQ_SEQ_( BOOST_MPL_PP_IS_SEQ_SPLIT_ seq )
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