diff options
author | Liana Husikyan <liana@ethdev.com> | 2015-03-17 18:34:56 +0800 |
---|---|---|
committer | Liana Husikyan <liana@ethdev.com> | 2015-03-17 21:25:23 +0800 |
commit | 46cbb5525cd8c2f22667c605ee7ef4da34301797 (patch) | |
tree | 18d1bb89e3ce4a46ad04064bff90990a85cf6bfd /AST.h | |
parent | 5a5577f5a5e8ef590810651e55a9a3192a0bf31c (diff) | |
download | dexon-solidity-46cbb5525cd8c2f22667c605ee7ef4da34301797.tar.gz dexon-solidity-46cbb5525cd8c2f22667c605ee7ef4da34301797.tar.zst dexon-solidity-46cbb5525cd8c2f22667c605ee7ef4da34301797.zip |
added anonymous to ABI
Diffstat (limited to 'AST.h')
-rw-r--r-- | AST.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -570,7 +570,7 @@ public: std::vector<ASTPointer<VariableDeclaration>> const& getParameters() const { return m_parameters->getParameters(); } ParameterList const& getParameterList() const { return *m_parameters; } - bool IsAnonymous() const { return m_anonymous; } + bool isAnonymous() const { return m_anonymous; } virtual TypePointer getType(ContractDefinition const* = nullptr) const override { |