Latest Borland with clang can support variadic macros. Updated iso test to be more correct choosing compiler level.

This commit is contained in:
Edward Diener
2020-02-18 02:44:51 -05:00
parent 98f6c75e1e
commit 9cf66925d4
2 changed files with 10 additions and 4 deletions

View File

@ -378,8 +378,6 @@ bret += PRINT_MACRO_RESULTS(xglue(HIGH, LOW),"hello" ", world");
}
#if BOOST_PP_VARIADICS || __cplusplus > 199711L
int print_macros_common_2()
{
@ -407,6 +405,8 @@ bret += PRINT_MACRO_RESULTS(char p[] = join(x, y);,char p[] = "x ## y";);
}
#if BOOST_PP_VARIADICS && __cplusplus > 199711L
int print_macros_common_3()
{
@ -514,11 +514,17 @@ int print_macros()
#define FTN_LIKE(a) ( a )
#define FTN_LIKE( a )( /* note the white space */ a /* other stuff on this line */ )
#if __cplusplus <= 199711L && !BOOST_PP_VARIADICS
#if !BOOST_PP_VARIADICS
bret += print_macros_common_1();
bret += print_macros_common_4();
#elif __cplusplus <= 199711L
bret += print_macros_common_2();
bret += print_macros_common_1();
bret += print_macros_common_4();
#elif __cplusplus <= 201703L
bret += print_macros_common_2();