Skip to content

Commit e6f3512

Browse files
committed
C++: Remove unused class UndefinedIdentifier
1 parent faeff39 commit e6f3512

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

cpp/ql/src/Telemetry/Diagnostics.qll

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,3 @@ class CannotOpenFile extends CompilerError {
2727
result = this.getMessage().regexpCapture("cannot open source file '([^']+)'", 1)
2828
}
2929
}
30-
31-
/**
32-
* An undefined identifier error.
33-
* Currently unused.
34-
*/
35-
class UndefinedIdentifier extends CompilerError {
36-
UndefinedIdentifier() { this.hasTag("undefined_identifier") }
37-
38-
string getIdentifier() {
39-
result = this.getMessage().regexpCapture("identifier '([^']+)' is undefined", 1)
40-
}
41-
}

0 commit comments

Comments
 (0)