From 715054b3b44001ff4cf5f21cb10ea40d5fed9d97 Mon Sep 17 00:00:00 2001 From: Paul Mensonides Date: Thu, 12 Sep 2002 23:08:13 +0000 Subject: [PATCH] MSVC fix [SVN r15281] --- include/boost/preprocessor/list/adt.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/preprocessor/list/adt.hpp b/include/boost/preprocessor/list/adt.hpp index 5a40444..99d9457 100644 --- a/include/boost/preprocessor/list/adt.hpp +++ b/include/boost/preprocessor/list/adt.hpp @@ -54,7 +54,7 @@ # # /* BOOST_PP_LIST_IS_CONS */ # -# if ~BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_BCC() +# if ~BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_BCC() && ~BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_MSVC() # define BOOST_PP_LIST_IS_CONS(list) BOOST_PP_IS_BINARY(list) # else # define BOOST_PP_LIST_IS_CONS(list) BOOST_PP_LIST_IS_CONS_D(list) @@ -65,7 +65,7 @@ # # /* BOOST_PP_LIST_IS_NIL */ # -# if ~BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_BCC() +# if ~BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_BCC() && ~BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_MSVC() # define BOOST_PP_LIST_IS_NIL(list) BOOST_PP_COMPL(BOOST_PP_IS_BINARY(list)) # else # define BOOST_PP_LIST_IS_NIL(list) BOOST_PP_COMPL(BOOST_PP_LIST_IS_CONS(list))