C++: Make toString deterministic for tests.

This commit is contained in:
Cornelius Riemenschneider
2021-03-16 16:23:21 +01:00
parent 9612426680
commit 4c4fc05553

View File

@@ -60,7 +60,7 @@ class ExtractionIrrecoverableError extends ExtractionError, TCompilationFailed {
ExtractionIrrecoverableError() { this = TCompilationFailed(c, f) }
override string toString() {
result = "Irrecoverable extraction error: " + c.toString() + " in " + f.toString()
result = "Irrecoverable extraction error while compiling " + f.toString()
}
override string getErrorMessage() {