gecko-dev/tools/clang-tidy/test/readability-redundant-preprocessor.cpp
2019-04-04 11:34:47 +00:00

5 lines
No EOL
85 B
C++

#ifndef FOO
#ifdef FOO // inner ifdef is considered redundant
void f();
#endif
#endif