mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14: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
|
@ -42,13 +42,13 @@ class FuncDecl : public Decl
|
|||
{
|
||||
public:
|
||||
FuncDecl(Function* function);
|
||||
~FuncDecl();
|
||||
~FuncDecl() override;
|
||||
|
||||
Function* function() const { return function_; }
|
||||
|
||||
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:
|
||||
Function* function_;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue