From 4d29901677437aa24d9dda58143e8df0977d3af4 Mon Sep 17 00:00:00 2001 From: Beman Dawes Date: Wed, 26 Mar 2008 17:13:05 +0000 Subject: [PATCH] Apply changeset 43865, fixing #1718 [SVN r43872] --- include/boost/mpl/aux_/preprocessor/is_seq.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/mpl/aux_/preprocessor/is_seq.hpp b/include/boost/mpl/aux_/preprocessor/is_seq.hpp index 26c391e..b3e2769 100644 --- a/include/boost/mpl/aux_/preprocessor/is_seq.hpp +++ b/include/boost/mpl/aux_/preprocessor/is_seq.hpp @@ -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 )