Test for stringize macro and use of variadic in stringize macro.

This commit is contained in:
Edward Diener
2018-10-16 16:37:10 -04:00
parent b5c081bf7a
commit 0e335df79e
6 changed files with 79 additions and 0 deletions

View File

@ -28,6 +28,10 @@
# define BOOST_PP_STRINGIZE(text) BOOST_PP_STRINGIZE_I(text)
# endif
#
#if BOOST_PP_VARIADICS
# define BOOST_PP_STRINGIZE_I(...) #__VA_ARGS__
#else
# define BOOST_PP_STRINGIZE_I(text) #text
#endif
#
# endif