Skip to content

Commit 39a7d3d

Browse files
committed
C++: Address review comments.
1 parent 5e0601f commit 39a7d3d

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

cpp/ql/src/Diagnostics/FailedExtractions.qll

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -84,10 +84,7 @@ class ExtractionUnrecoverableError extends ExtractionError, TCompilationFailed {
8484
result = "Unrecoverable extraction error while compiling " + f.toString()
8585
}
8686

87-
override string getErrorMessage() {
88-
result =
89-
"Unrecoverable compilation failure; check logs/build-tracer.log in the database directory for more information."
90-
}
87+
override string getErrorMessage() { result = "unrecoverable compilation failure." }
9188

9289
override File getFile() { result = f }
9390

cpp/ql/src/Diagnostics/AbortedExtractions.ql renamed to cpp/ql/src/Diagnostics/FailedInvocations.ql

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

88
import cpp

0 commit comments

Comments
 (0)