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:
@@ -38,12 +38,12 @@ public:
|
||||
MovableChecker() = default;
|
||||
explicit MovableChecker(Expression const& _expression);
|
||||
|
||||
virtual void operator()(Identifier const& _identifier) override;
|
||||
virtual void operator()(FunctionalInstruction const& _functionalInstruction) override;
|
||||
virtual void operator()(FunctionCall const& _functionCall) override;
|
||||
void operator()(Identifier const& _identifier) override;
|
||||
void operator()(FunctionalInstruction const& _functionalInstruction) override;
|
||||
void operator()(FunctionCall const& _functionCall) override;
|
||||
|
||||
/// Disallow visiting anything apart from Expressions (this throws).
|
||||
virtual void visit(Statement const&) override;
|
||||
void visit(Statement const&) override;
|
||||
using ASTWalker::visit;
|
||||
|
||||
bool movable() const { return m_movable; }
|
||||
|
||||
Reference in New Issue
Block a user