mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-11 23:46:06 +00:00

properly. This warning checks that the #ifndef and #define directives at the beginning of a header refer to the same macro name. Includes a fix-it hint to correct the header guard. llvm-svn: 183867
5 lines
51 B
C
5 lines
51 B
C
#ifndef bad_header_guard
|
|
#define bad_guard
|
|
|
|
#endif
|