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 e821b8b commit d34f7b9Copy full SHA for d34f7b9
1 file changed
cpp/ql/src/Diagnostics/FailedExtractorInvocations.ql
@@ -1,16 +1,12 @@
1
/**
2
* @name Failed extractor invocations
3
* @description Gives the command line of compilations for which extraction did not run to completion.
4
- * @kind table
+ * @kind diagnostic
5
* @id cpp/diagnostics/failed-extractor-invocations
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)
18
+select "Extraction aborted for " + describe(c)
0 commit comments