diff options
author | Christian <c@ethdev.com> | 2015-01-26 17:13:34 +0800 |
---|---|---|
committer | Christian <c@ethdev.com> | 2015-01-26 17:23:39 +0800 |
commit | f59cda76def4b1d24236e5a110bfebbd688c5d1a (patch) | |
tree | c69ad10b339d09792bcb3b23c8b2b60cd5b55556 | |
parent | fd5899d03806d82e228da12f8cbe151f079ea41f (diff) | |
download | dexon-solidity-f59cda76def4b1d24236e5a110bfebbd688c5d1a.tar dexon-solidity-f59cda76def4b1d24236e5a110bfebbd688c5d1a.tar.gz dexon-solidity-f59cda76def4b1d24236e5a110bfebbd688c5d1a.tar.bz2 dexon-solidity-f59cda76def4b1d24236e5a110bfebbd688c5d1a.tar.lz dexon-solidity-f59cda76def4b1d24236e5a110bfebbd688c5d1a.tar.xz dexon-solidity-f59cda76def4b1d24236e5a110bfebbd688c5d1a.tar.zst dexon-solidity-f59cda76def4b1d24236e5a110bfebbd688c5d1a.zip |
Call modifiers on constructor.
-rw-r--r-- | Compiler.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Compiler.cpp b/Compiler.cpp index 99a429bc..5190f93f 100644 --- a/Compiler.cpp +++ b/Compiler.cpp @@ -475,6 +475,7 @@ bool Compiler::visit(PlaceholderStatement const&) ++m_modifierDepth; appendModifierOrFunctionCode(); --m_modifierDepth; + return true; } void Compiler::appendModifierOrFunctionCode() |