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.
6 lines
131 B
C
6 lines
131 B
C
// Trailing characters after an #undef should throw an error.
|
|
|
|
#pragma pedantic
|
|
|
|
#define WHATEVER
|
|
#undef WHATEVER this should fail
|