diff options
author | chriseth <chris@ethereum.org> | 2017-06-01 18:26:13 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2017-09-16 19:12:43 +0800 |
commit | 22f85d5af371bb621f8735957b7519d14e3b40c9 (patch) | |
tree | b492d0319e7fd04630dc70aeb2c994931d39a142 /libsolidity | |
parent | 59ea19b3b957949fc53bfb5dc4e199d2196f8d18 (diff) | |
download | dexon-solidity-22f85d5af371bb621f8735957b7519d14e3b40c9.tar.gz dexon-solidity-22f85d5af371bb621f8735957b7519d14e3b40c9.tar.zst dexon-solidity-22f85d5af371bb621f8735957b7519d14e3b40c9.zip |
Update tests and error messages.
Diffstat (limited to 'libsolidity')
-rw-r--r-- | libsolidity/codegen/ContractCompiler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libsolidity/codegen/ContractCompiler.cpp b/libsolidity/codegen/ContractCompiler.cpp index 51496368..92782b8d 100644 --- a/libsolidity/codegen/ContractCompiler.cpp +++ b/libsolidity/codegen/ContractCompiler.cpp @@ -333,7 +333,7 @@ void ContractCompiler::appendCalldataUnpacker(TypePointers const& _typeParameter { // stack: v1 v2 ... v(k-1) base_offset current_offset TypePointer type = parameterType->decodingType(); - solAssert(type, "No decoding type found."); + solUnimplementedAssert(type, "No decoding type found."); if (type->category() == Type::Category::Array) { auto const& arrayType = dynamic_cast<ArrayType const&>(*type); |