Changed BOOST_PP_EMPTY to only use the variadic version when not VC++. Corrected others to use local version of EMPTY.

This commit is contained in:
Edward Diener
2014-05-23 10:23:40 -04:00
parent f61bb8a80f
commit 8ac31eb612
5 changed files with 17 additions and 11 deletions

View File

@ -19,10 +19,14 @@
#
# /* BOOST_PP_EMPTY */
#
# if BOOST_PP_VARIADICS
# if BOOST_PP_VARIADICS && !BOOST_PP_VARIADICS_MSVC
# define BOOST_PP_EMPTY(...)
# else
# define BOOST_PP_EMPTY()
# endif
#
# if BOOST_PP_VARIADICS
# define BOOST_PP_VARIADIC_EMPTY(...)
# endif
#
# endif