diff options
author | chriseth <c@ethdev.com> | 2015-06-27 06:13:53 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2015-06-27 06:13:53 +0800 |
commit | bdbe5a3cf8dc2d337f8ec471394e9c5d366a5d08 (patch) | |
tree | e091f08129b1bfd040af637db47529e6f0dbc562 | |
parent | fac812441215f4721f5e0a2b3d79d358a085a101 (diff) | |
download | dexon-solidity-bdbe5a3cf8dc2d337f8ec471394e9c5d366a5d08.tar dexon-solidity-bdbe5a3cf8dc2d337f8ec471394e9c5d366a5d08.tar.gz dexon-solidity-bdbe5a3cf8dc2d337f8ec471394e9c5d366a5d08.tar.bz2 dexon-solidity-bdbe5a3cf8dc2d337f8ec471394e9c5d366a5d08.tar.lz dexon-solidity-bdbe5a3cf8dc2d337f8ec471394e9c5d366a5d08.tar.xz dexon-solidity-bdbe5a3cf8dc2d337f8ec471394e9c5d366a5d08.tar.zst dexon-solidity-bdbe5a3cf8dc2d337f8ec471394e9c5d366a5d08.zip |
Fix gcc issue.
-rw-r--r-- | Types.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -685,6 +685,8 @@ TypePointer ReferenceType::unaryOperatorResult(Token::Value _operator) const return make_shared<VoidType>(); case DataLocation::Storage: return m_isPointer ? TypePointer() : make_shared<VoidType>(); + default: + solAssert(false, ""); } } |