binpac: Mark overridden methods with 'override'

This commit is contained in:
Tim Wojtulewicz 2023-01-30 17:05:32 -07:00
parent 45ef19049c
commit 299f39e8e2
29 changed files with 260 additions and 257 deletions

View file

@ -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_;