Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60155ce commit 3b4fdb3Copy full SHA for 3b4fdb3
1 file changed
cpp/ql/test/query-tests/Likely Bugs/Underspecified Functions/test.c
@@ -30,7 +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 (GOOD for everything except for cpp/mistyped-function-arguments)
+ not_yet_declared2(ca); // BAD (GOOD for everything except for cpp/mistyped-function-arguments
34
+ // and cpp/too-few-arguments. Not detected in the case of cpp/too-few-arguments.)
35
not_yet_declared2(); // BAD [NOT DETECTED] (GOOD for everything except for cpp/too-few-arguments)
36
37
declared_empty_defined_with(); // BAD
0 commit comments