WCDH: Test that no C compiler features are defined for CXX compiler.

This amends commit 54156d72 (WCDH: Generate per-language files
in multi-file mode., 2015-01-17).
This commit is contained in:
Stephen Kelly 2015-01-19 19:52:22 +01:00
parent 8dc0c97666
commit 3c0996c135
2 changed files with 8 additions and 0 deletions

View File

@ -4,6 +4,10 @@
#define PREFIX TEST
#include "compile_tests.h"
#ifdef TEST_COMPILER_C_STATIC_ASSERT
#error Expect no C features defined
#endif
int main()
{
return 0;

View File

@ -4,6 +4,10 @@
#define PREFIX MULTI
#include "compile_tests.h"
#ifdef MULTI_COMPILER_C_STATIC_ASSERT
#error Expect no C features defined
#endif
int main()
{
return 0;