Files
codeql/cpp/ql/test/query-tests/Best Practices/SloppyGlobal/main.cpp
2018-08-02 17:53:23 +01:00

8 lines
152 B
C++

// main.cpp
int x; // BAD: too short
int ys[1000000]; // BAD: too short
int descriptive_name; // GOOD: sufficient
static int z; // GOOD: not a global