Skip to content

Commit e821b8b

Browse files
committed
C++: Fix warning from compile-query.
1 parent db4c8df commit e821b8b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cpp/ql/src/Diagnostics/FailedExtractorInvocations.ql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @name Failed extractor invocations
33
* @description Gives the command line of compilations for which extraction did not run to completion.
4-
* @kind diagnostic
4+
* @kind table
55
* @id cpp/diagnostics/failed-extractor-invocations
66
*/
77

@@ -19,4 +19,4 @@ string describe(Compilation c) {
1919

2020
from Compilation c
2121
where not c.normalTermination()
22-
select c, "Extraction aborted for " + describe(c), 2
22+
select c, "Extraction aborted for " + describe(c)

0 commit comments

Comments
 (0)