diff options
author | Christian <c@ethdev.com> | 2015-02-22 01:25:08 +0800 |
---|---|---|
committer | Christian <c@ethdev.com> | 2015-02-22 01:25:08 +0800 |
commit | 261786d909262e6cb4e9602cced76a3a22b7cb88 (patch) | |
tree | f4003a11a769bd9c15758b23fe24ec7f38482f57 /AST.h | |
parent | be15e0b424d9a7bd181c8525dbb2eb0a26806c13 (diff) | |
download | dexon-solidity-261786d909262e6cb4e9602cced76a3a22b7cb88.tar.gz dexon-solidity-261786d909262e6cb4e9602cced76a3a22b7cb88.tar.zst dexon-solidity-261786d909262e6cb4e9602cced76a3a22b7cb88.zip |
Allow conversion to dynamic arrays and update grammar.
Diffstat (limited to 'AST.h')
-rw-r--r-- | AST.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1102,7 +1102,7 @@ public: virtual void checkTypeRequirements() override; Expression const& getBaseExpression() const { return *m_base; } - Expression const& getIndexExpression() const { return *m_index; } + Expression const* getIndexExpression() const { return m_index.get(); } private: ASTPointer<Expression> m_base; |