mirror of
https://github.com/ldmud/ldmud
synced 2026-08-12 14:26:05 -04:00
Similar to #else and #endif warn about trailing characters also in #include, #ifdef, #ifndef, #undef and #line statements.
7 lines
117 B
C
7 lines
117 B
C
// Trailing characters after an #endif should throw an error.
|
|
|
|
#pragma pedantic
|
|
|
|
#if 1
|
|
#else
|
|
#endif this should fail
|