mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Removing redundant virtual from override function declaration
Remove trailing whitespace Remove changelog change
This commit is contained in:
@@ -49,9 +49,9 @@ public:
|
||||
}
|
||||
|
||||
using ASTWalker::operator();
|
||||
virtual void operator()(Identifier const& _identifier) override;
|
||||
virtual void operator()(FunctionCall const& _funCall) override;
|
||||
virtual void operator()(FunctionDefinition const& _function) override;
|
||||
void operator()(Identifier const& _identifier) override;
|
||||
void operator()(FunctionCall const& _funCall) override;
|
||||
void operator()(FunctionDefinition const& _function) override;
|
||||
|
||||
private:
|
||||
void checkAllowed(YulString _name)
|
||||
|
||||
Reference in New Issue
Block a user