aboutsummaryrefslogtreecommitdiffstats
path: root/AST.h
diff options
context:
space:
mode:
authorChristian <c@ethdev.com>2014-11-07 05:07:02 +0800
committerChristian <c@ethdev.com>2014-11-07 05:07:02 +0800
commit6c2e3ffd76eaf43f4a309d3316793126ccf72c40 (patch)
treea0957de01b09b063cc4a6e077faf09658733bbd6 /AST.h
parentd3215fb4a697e8e9962bf59f573fab309ab5ac18 (diff)
parenteb894869d49d4be512c73e517f7013717645cbbb (diff)
downloaddexon-solidity-6c2e3ffd76eaf43f4a309d3316793126ccf72c40.tar.gz
dexon-solidity-6c2e3ffd76eaf43f4a309d3316793126ccf72c40.tar.zst
dexon-solidity-6c2e3ffd76eaf43f4a309d3316793126ccf72c40.zip
Merge remote-tracking branch 'ethereum/develop' into sol_typePromotion
Diffstat (limited to 'AST.h')
-rw-r--r--AST.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/AST.h b/AST.h
index f80031f4..ce9190ea 100644
--- a/AST.h
+++ b/AST.h
@@ -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