diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-10-04 20:05:55 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2017-10-04 20:05:55 +0800 |
commit | a9847c955106dbf74d47d68122a634c787e0d00b (patch) | |
tree | 47de56afd35f31d69cc4aa2030544ddc92769224 /libsolidity/ast | |
parent | 30908415bfdb463adafc4aabab48cbe56d105012 (diff) | |
download | dexon-solidity-a9847c955106dbf74d47d68122a634c787e0d00b.tar.gz dexon-solidity-a9847c955106dbf74d47d68122a634c787e0d00b.tar.zst dexon-solidity-a9847c955106dbf74d47d68122a634c787e0d00b.zip |
Use solAssert and not assert
Diffstat (limited to 'libsolidity/ast')
-rw-r--r-- | libsolidity/ast/Types.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libsolidity/ast/Types.cpp b/libsolidity/ast/Types.cpp index a39b5775..a3cbe50a 100644 --- a/libsolidity/ast/Types.cpp +++ b/libsolidity/ast/Types.cpp @@ -89,7 +89,7 @@ pair<u256, unsigned> const* StorageOffsets::offset(size_t _index) const MemberList& MemberList::operator=(MemberList&& _other) { - assert(&_other != this); + solAssert(&_other != this, ""); m_memberTypes = move(_other.m_memberTypes); m_storageOffsets = move(_other.m_storageOffsets); |