diff options
author | Christian <c@ethdev.com> | 2014-11-06 06:35:00 +0800 |
---|---|---|
committer | Christian <c@ethdev.com> | 2014-11-06 06:35:00 +0800 |
commit | 0062cdb83c85162335188e9a21ebe85cb807a084 (patch) | |
tree | cfd3df180d3049ae8c42b0c15fc8af97f7a75c2a /AST.h | |
parent | e30d3f8d539882376b29a1fe8f4bf6bcaf8c1762 (diff) | |
download | dexon-solidity-0062cdb83c85162335188e9a21ebe85cb807a084.tar.gz dexon-solidity-0062cdb83c85162335188e9a21ebe85cb807a084.tar.zst dexon-solidity-0062cdb83c85162335188e9a21ebe85cb807a084.zip |
Minor cleanup.
Diffstat (limited to 'AST.h')
-rw-r--r-- | AST.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -390,7 +390,7 @@ class Continue: public Statement public: Continue(Location const& _location): Statement(_location) {} virtual void accept(ASTVisitor& _visitor) override; - virtual void checkTypeRequirements() override; + virtual void checkTypeRequirements() override {} }; class Break: public Statement @@ -398,7 +398,7 @@ class Break: public Statement public: Break(Location const& _location): Statement(_location) {} virtual void accept(ASTVisitor& _visitor) override; - virtual void checkTypeRequirements() override; + virtual void checkTypeRequirements() override {} }; class Return: public Statement |