File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 1
1
| b.c:5:3:5:34 | return ... | 10 |
2
2
| c.c:2:3:2:20 | return ... | 5 |
3
3
| e.c:2:3:2:19 | return ... | 17 |
4
+ | g.c:3:3:3:12 | return ... | 20 |
4
5
| i.c:3:3:3:12 | return ... | 30 |
5
6
| i.c:8:3:8:12 | return ... | 31 |
6
7
| i.c:13:3:13:12 | return ... | 32 |
Original file line number Diff line number Diff line change 1
1
#ifdef SEEN_H
2
2
static int h () {
3
- return 30 ; // [FALSE POSITIVE] (#pragma hdrstop bug, SEEN_H should not be defined in the precompiled header)
3
+ return 30 ;
4
4
}
5
5
#endif
6
6
#ifdef H1
@@ -10,7 +10,7 @@ static int h1() {
10
10
#endif
11
11
#ifdef H2
12
12
static int h2 () {
13
- return 32 ; // [FALSE POSITIVE] (#pragma hdrstop bug, H2 should not be defined in the precompiled header)
13
+ return 32 ;
14
14
}
15
15
#endif
16
16
// semmle-extractor-options: --clang -include-pch ${testdir}/clang-pch.testproj/h.pch
You can’t perform that action at this time.
0 commit comments