diff options
author | mordax <maya@mordax.io> | 2018-11-16 09:09:04 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2018-11-21 22:37:32 +0800 |
commit | ea8b7d803ebd151401be7479f48afb0ad19f5f74 (patch) | |
tree | be363297661531057296c468c15c5003510540d5 /libyul/optimiser/Semantics.h | |
parent | d3f66ca0fab130e801b012bd192e1e8e97fb3761 (diff) | |
download | dexon-solidity-ea8b7d803ebd151401be7479f48afb0ad19f5f74.tar.gz dexon-solidity-ea8b7d803ebd151401be7479f48afb0ad19f5f74.tar.zst dexon-solidity-ea8b7d803ebd151401be7479f48afb0ad19f5f74.zip |
Removing redundant virtual from override function declaration
Remove trailing whitespace
Remove changelog change
Diffstat (limited to 'libyul/optimiser/Semantics.h')
-rw-r--r-- | libyul/optimiser/Semantics.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libyul/optimiser/Semantics.h b/libyul/optimiser/Semantics.h index 620a91cb..a7e8706b 100644 --- a/libyul/optimiser/Semantics.h +++ b/libyul/optimiser/Semantics.h @@ -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; } |