We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c1e445 commit 6ef8fb6Copy full SHA for 6ef8fb6
cpp/ql/src/Diagnostics/FailedExtractions.ql
@@ -2,12 +2,11 @@
2
* @kind diagnostic
3
* @id cpp/diagnostics/failed-extractions
4
*/
5
+
6
import cpp
7
8
class AnonymousCompilation extends Compilation {
- override string toString() {
9
- result = "<compilation>"
10
- }
+ override string toString() { result = "<compilation>" }
11
}
12
13
string describe(Compilation c) {
@@ -19,4 +18,3 @@ string describe(Compilation c) {
19
18
from Compilation c
20
where not c.normalTermination()
21
select c, "Extraction failed for " + describe(c), 2
22
-
0 commit comments