diff options
author | Christian <c@ethdev.com> | 2015-02-23 02:15:41 +0800 |
---|---|---|
committer | Christian <c@ethdev.com> | 2015-02-24 01:25:49 +0800 |
commit | 754c804d191ad8f05d886566e599a82efbd38d8e (patch) | |
tree | 3872af65523e734487f9ef2eb605ae0329d0caa2 /Types.h | |
parent | 3abbb8d625bd3a904c54dfda7558a77d5543ac70 (diff) | |
download | dexon-solidity-754c804d191ad8f05d886566e599a82efbd38d8e.tar.gz dexon-solidity-754c804d191ad8f05d886566e599a82efbd38d8e.tar.zst dexon-solidity-754c804d191ad8f05d886566e599a82efbd38d8e.zip |
Implementation of index access.
Diffstat (limited to 'Types.h')
-rw-r--r-- | Types.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -303,6 +303,7 @@ public: virtual TypePointer unaryOperatorResult(Token::Value _operator) const override; virtual bool operator==(const Type& _other) const override; virtual bool isDynamicallySized() const { return m_hasDynamicLength; } + virtual u256 getStorageSize() const override; virtual unsigned getSizeOnStack() const override; virtual std::string toString() const override; virtual MemberList const& getMembers() const override { return s_arrayTypeMemberList; } |