From 256368661c1dec0d74584c284e1609f2aae04d21 Mon Sep 17 00:00:00 2001 From: Paul Mensonides Date: Fri, 13 Sep 2002 09:23:06 +0000 Subject: [PATCH] flags fix [SVN r15296] --- include/boost/preprocessor/debug/assert.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/preprocessor/debug/assert.hpp b/include/boost/preprocessor/debug/assert.hpp index d0a77b9..94fdb9a 100644 --- a/include/boost/preprocessor/debug/assert.hpp +++ b/include/boost/preprocessor/debug/assert.hpp @@ -23,7 +23,7 @@ # # /* BOOST_PP_ASSERT */ # -# if ~BOOST_PP_CONFIG_FLAGS & BOOST_PP_CONFIG_EDG +# if ~BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_EDG() # define BOOST_PP_ASSERT BOOST_PP_ASSERT_D # else # define BOOST_PP_ASSERT(cond) BOOST_PP_ASSERT_D(cond) @@ -34,7 +34,7 @@ # # /* BOOST_PP_ASSERT_MSG */ # -# if ~BOOST_PP_CONFIG_FLAGS & BOOST_PP_CONFIG_EDG +# if ~BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_EDG() # define BOOST_PP_ASSERT_MSG BOOST_PP_ASSERT_MSG_D # else # define BOOST_PP_ASSERT_MSG(cond, msg) BOOST_PP_ASSERT_MSG_D(cond, msg)