We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents db4c8df + d34f7b9 commit c47d680Copy full SHA for c47d680
cpp/ql/src/Diagnostics/FailedExtractorInvocations.ql
@@ -7,10 +7,6 @@
7
8
import cpp
9
10
-class AnonymousCompilation extends Compilation {
11
- override string toString() { result = "<compilation>" }
12
-}
13
-
14
string describe(Compilation c) {
15
if c.getArgument(1) = "--mimic"
16
then result = "compiler invocation " + concat(int i | i > 1 | c.getArgument(i), " " order by i)
@@ -19,4 +15,4 @@ string describe(Compilation c) {
19
20
from Compilation c
21
17
where not c.normalTermination()
22
-select c, "Extraction aborted for " + describe(c), 2
18
+select "Extraction aborted for " + describe(c)
0 commit comments