mirror of
https://github.com/github/codeql.git
synced 2026-04-30 03:05:15 +02:00
C++: Un-deprecate class Qualifier
It turns out this was used in the internal repo.
This commit is contained in:
@@ -1,10 +1,9 @@
|
||||
import semmle.code.cpp.exprs.Expr
|
||||
|
||||
/**
|
||||
* DEPRECATED: This class has not been useful.
|
||||
* An expression that is used to qualify some other expression.
|
||||
*/
|
||||
deprecated class Qualifier extends Expr {
|
||||
class Qualifier extends Expr {
|
||||
Qualifier() {
|
||||
exists(VariableAccess a | a.getQualifier() = this) or
|
||||
exists(Call c | c.getQualifier() = this) or
|
||||
|
||||
Reference in New Issue
Block a user