aboutsummaryrefslogtreecommitdiffstats
path: root/Types.h
diff options
context:
space:
mode:
authorchriseth <c@ethdev.com>2015-03-17 02:00:09 +0800
committerchriseth <c@ethdev.com>2015-03-17 02:00:45 +0800
commitc284408e7a31f2e24611cf6360b492e35ab1c0b5 (patch)
tree5871e7976992083268504d539d2702b40cbb39b5 /Types.h
parent9b2a255c1b0ac1e247a59e4cd8cb3c94b53aca7c (diff)
downloaddexon-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.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Types.h b/Types.h
index cc7a0e24..e7601fde 100644
--- a/Types.h
+++ b/Types.h
@@ -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)