mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
Also remove incorrect FP comment. clang does not support `#pragma hdrstop` in its non-cl-emulation mode.
17 lines
239 B
C
17 lines
239 B
C
#ifdef SEEN_H
|
|
static int h() {
|
|
return 30;
|
|
}
|
|
#endif
|
|
#ifdef H1
|
|
static int h1() {
|
|
return 31;
|
|
}
|
|
#endif
|
|
#ifdef H2
|
|
static int h2() {
|
|
return 32;
|
|
}
|
|
#endif
|
|
// semmle-extractor-options: --clang -include-pch ${testdir}/clang-pch.testproj/h.pch
|