diff options
author | chriseth <c@ethdev.com> | 2015-03-17 02:00:09 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2015-03-17 02:00:45 +0800 |
commit | c284408e7a31f2e24611cf6360b492e35ab1c0b5 (patch) | |
tree | 5871e7976992083268504d539d2702b40cbb39b5 /Types.h | |
parent | 9b2a255c1b0ac1e247a59e4cd8cb3c94b53aca7c (diff) | |
download | dexon-solidity-c284408e7a31f2e24611cf6360b492e35ab1c0b5.tar.gz dexon-solidity-c284408e7a31f2e24611cf6360b492e35ab1c0b5.tar.zst dexon-solidity-c284408e7a31f2e24611cf6360b492e35ab1c0b5.zip |
Add move assignment operator manually.
Diffstat (limited to 'Types.h')
-rw-r--r-- | Types.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -73,6 +73,7 @@ public: MemberList() {} explicit MemberList(MemberMap const& _members): m_memberTypes(_members) {} + MemberList& operator=(MemberList&& _other); TypePointer getMemberType(std::string const& _name) const { for (auto const& it: m_memberTypes) |