mirror of
https://github.com/boostorg/preprocessor.git
synced 2025-07-16 05:52:24 +02:00
minor vc fixes
[SVN r16702]
This commit is contained in:
@ -24,7 +24,12 @@
|
||||
# define BOOST_PP_BITAND_OO(par) BOOST_PP_BITAND_I ## par
|
||||
# endif
|
||||
#
|
||||
# define BOOST_PP_BITAND_I(x, y) BOOST_PP_BITAND_ ## x ## y
|
||||
# if ~BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_MSVC()
|
||||
# define BOOST_PP_BITAND_I(x, y) BOOST_PP_BITAND_ ## x ## y
|
||||
# else
|
||||
# define BOOST_PP_BITAND_I(x, y) BOOST_PP_BITAND_ID(BOOST_PP_BITAND_ ## x ## y)
|
||||
# define BOOST_PP_BITAND_ID(res) res
|
||||
# endif
|
||||
#
|
||||
# define BOOST_PP_BITAND_00 0
|
||||
# define BOOST_PP_BITAND_01 0
|
||||
|
@ -24,7 +24,12 @@
|
||||
# define BOOST_PP_BITNOR_OO(par) BOOST_PP_BITNOR_I ## par
|
||||
# endif
|
||||
#
|
||||
# define BOOST_PP_BITNOR_I(x, y) BOOST_PP_BITNOR_ ## x ## y
|
||||
# if ~BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_MSVC()
|
||||
# define BOOST_PP_BITNOR_I(x, y) BOOST_PP_BITNOR_ ## x ## y
|
||||
# else
|
||||
# define BOOST_PP_BITNOR_I(x, y) BOOST_PP_BITNOR_ID(BOOST_PP_BITNOR_ ## x ## y)
|
||||
# define BOOST_PP_BITNOR_ID(id) id
|
||||
# endif
|
||||
#
|
||||
# define BOOST_PP_BITNOR_00 1
|
||||
# define BOOST_PP_BITNOR_01 0
|
||||
|
@ -24,7 +24,12 @@
|
||||
# define BOOST_PP_BITOR_OO(par) BOOST_PP_BITOR_I ## par
|
||||
# endif
|
||||
#
|
||||
# define BOOST_PP_BITOR_I(x, y) BOOST_PP_BITOR_ ## x ## y
|
||||
# if ~BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_MSVC()
|
||||
# define BOOST_PP_BITOR_I(x, y) BOOST_PP_BITOR_ ## x ## y
|
||||
# else
|
||||
# define BOOST_PP_BITOR_I(x, y) BOOST_PP_BITOR_ID(BOOST_PP_BITOR_ ## x ## y)
|
||||
# define BOOST_PP_BITOR_ID(id) id
|
||||
# endif
|
||||
#
|
||||
# define BOOST_PP_BITOR_00 0
|
||||
# define BOOST_PP_BITOR_01 1
|
||||
|
@ -24,7 +24,12 @@
|
||||
# define BOOST_PP_BITXOR_OO(par) BOOST_PP_BITXOR_I ## par
|
||||
# endif
|
||||
#
|
||||
# define BOOST_PP_BITXOR_I(x, y) BOOST_PP_BITXOR_ ## x ## y
|
||||
# if ~BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_MSVC()
|
||||
# define BOOST_PP_BITXOR_I(x, y) BOOST_PP_BITXOR_ ## x ## y
|
||||
# else
|
||||
# define BOOST_PP_BITXOR_I(x, y) BOOST_PP_BITXOR_ID(BOOST_PP_BITXOR_ ## x ## y)
|
||||
# define BOOST_PP_BITXOR_ID(id) id
|
||||
# endif
|
||||
#
|
||||
# define BOOST_PP_BITXOR_00 0
|
||||
# define BOOST_PP_BITXOR_01 1
|
||||
|
@ -24,7 +24,12 @@
|
||||
# define BOOST_PP_COMPL_OO(par) BOOST_PP_COMPL_I ## par
|
||||
# endif
|
||||
#
|
||||
# define BOOST_PP_COMPL_I(x) BOOST_PP_COMPL_ ## x
|
||||
# if ~BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_MSVC()
|
||||
# define BOOST_PP_COMPL_I(x) BOOST_PP_COMPL_ ## x
|
||||
# else
|
||||
# define BOOST_PP_COMPL_I(x) BOOST_PP_COMPL_ID(BOOST_PP_COMPL_ ## x)
|
||||
# define BOOST_PP_COMPL_ID(id) id
|
||||
# endif
|
||||
#
|
||||
# define BOOST_PP_COMPL_0 1
|
||||
# define BOOST_PP_COMPL_1 0
|
||||
|
Reference in New Issue
Block a user