mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-21 13:48:33 -05:00
c798744f81
Fixes: #23338
9 lines
260 B
C
9 lines
260 B
C
#if defined(__cplusplus) && !defined(EXPECT_CXX)
|
|
# error "__cplusplus defined but EXPECT_CXX not defined"
|
|
#endif
|
|
#if !defined(__cplusplus) && defined(EXPECT_CXX)
|
|
# error "__cplusplus not defined but EXPECT_CXX defined"
|
|
#endif
|
|
|
|
extern void lang_test_h(void);
|