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 a3dfa31 commit 9c97176Copy full SHA for 9c97176
1 file changed
cpp/ql/test/query-tests/jsf/4.13 Functions/AV Rule 114/test.c
@@ -65,22 +65,22 @@ int f10() {
65
66
int f11(int x)
67
{
68
- if (x < 10)
69
- {
70
- return x;
71
- } else {
72
- f10(); // GOOD
73
- }
+ if (x < 10)
+ {
+ return x;
+ } else {
+ f10(); // GOOD
+ }
74
}
75
76
int f12(int x)
77
78
- while (1)
79
80
- // ...
+ while (1)
+ // ...
81
82
- if (x == 10) return 1; // GOOD
+ if (x == 10) return 1; // GOOD
83
84
85
86
0 commit comments