mirror of
https://github.com/zeek/zeek.git
synced 2025-10-16 21:48:21 +00:00
binpac: Mark overridden methods with 'override'
This commit is contained in:
parent
45ef19049c
commit
299f39e8e2
29 changed files with 260 additions and 257 deletions
|
@ -30,9 +30,9 @@ class RegExDecl : public Decl
|
|||
public:
|
||||
RegExDecl(RegEx* regex);
|
||||
|
||||
void Prepare();
|
||||
void GenForwardDeclaration(Output* out_h);
|
||||
void GenCode(Output* out_h, Output* out_cc);
|
||||
void Prepare() override;
|
||||
void GenForwardDeclaration(Output* out_h) override;
|
||||
void GenCode(Output* out_h, Output* out_cc) override;
|
||||
|
||||
private:
|
||||
RegEx* regex_;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue