We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d85144 commit 227f9c7Copy full SHA for 227f9c7
cpp/ql/test/query-tests/Likely Bugs/Underspecified Functions/test.c
@@ -30,8 +30,8 @@ void test(int *argv[]) {
30
31
not_yet_declared1(1); // BAD (GOOD for everything except for cpp/implicit-function-declaration)
32
not_yet_declared2(1); // BAD (GOOD for everything except for cpp/implicit-function-declaration)
33
- not_yet_declared2(ca); // BAD
34
- not_yet_declared2(); // BAD
+ not_yet_declared2(ca); // BAD (GOOD for everything except for cpp/mistyped-function-arguments)
+ not_yet_declared2(); // GOOD
35
36
declared_empty_defined_with(); // BAD
37
declared_empty_defined_with(1); // GOOD
0 commit comments