fune/tools/clang-tidy/test/readability-redundant-preprocessor.cpp

5 lines
86 B
C++

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