Files
tubestation/tools/clang-tidy/test/modernize-use-nullptr.cpp

6 lines
71 B
C++

#define NULL 0
void f(void) {
char *str = NULL; // ok
(void)str;
}