Skip to content

Commit 3423a10

Browse files
committed
C++: Address review comments
1 parent edd18dc commit 3423a10

File tree

2 files changed

+2
-2
lines changed
  • cpp/ql/integration-tests/header-variant-tests

2 files changed

+2
-2
lines changed

cpp/ql/integration-tests/header-variant-tests/clang-pch/test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
def test(codeql, cpp):
55
os.mkdir("pch")
6-
extractor = f"{cpp.get_tool("extractor")}"
6+
extractor = cpp.get_tool("extractor")
77
codeql.database.create(command=[
88
f'"{extractor}" --mimic-clang -emit-pch -o pch/a.pch a.c',
99
f'"{extractor}" --mimic-clang -include-pch pch/a.pch -Iextra_dummy_path b.c',

cpp/ql/integration-tests/header-variant-tests/microsoft-pch/test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
def test(codeql, cpp):
55
os.mkdir("pch")
6-
extractor = f"{cpp.get_tool("extractor")}"
6+
extractor = cpp.get_tool("extractor")
77
codeql.database.create(command=[
88
f'"{extractor}" --mimic-cl /Yca.h /Fppch/a.pch a.c',
99
f'"{extractor}" --mimic-cl /Yub.h /Fppch/a.pch b.c',

0 commit comments

Comments
 (0)