C++: Address review comments.

This commit is contained in:
Cornelius Riemenschneider
2021-03-17 12:28:03 +01:00
parent 5e0601fe1f
commit 39a7d3decc
2 changed files with 3 additions and 6 deletions

View File

@@ -84,10 +84,7 @@ class ExtractionUnrecoverableError extends ExtractionError, TCompilationFailed {
result = "Unrecoverable extraction error while compiling " + f.toString()
}
override string getErrorMessage() {
result =
"Unrecoverable compilation failure; check logs/build-tracer.log in the database directory for more information."
}
override string getErrorMessage() { result = "unrecoverable compilation failure." }
override File getFile() { result = f }

View File

@@ -1,8 +1,8 @@
/**
* @name Aborted extractor invocations
* @name Failed extractor invocations
* @description Gives the command line of compilations for which extraction did not run to completion.
* @kind diagnostic
* @id cpp/diagnostics/aborted-extractions
* @id cpp/diagnostics/failed-extractor-invocations
*/
import cpp