mirror of
https://github.com/zeek/zeek.git
synced 2025-10-04 23:58:20 +00:00
Add missing override specifier to a number of methods, remove virtual from some as well
This commit is contained in:
parent
6aaabceed2
commit
186005133b
9 changed files with 42 additions and 43 deletions
|
@ -421,8 +421,8 @@ public:
|
|||
OuterIDBindingFinder(Scope* s)
|
||||
: scope(s) { }
|
||||
|
||||
virtual TraversalCode PreExpr(const Expr*);
|
||||
virtual TraversalCode PostExpr(const Expr*);
|
||||
TraversalCode PreExpr(const Expr*) override;
|
||||
TraversalCode PostExpr(const Expr*) override;
|
||||
|
||||
Scope* scope;
|
||||
vector<const NameExpr*> outer_id_references;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue