aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/codegen/ContractCompiler.cpp
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2017-06-01 18:26:13 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2017-09-16 19:12:43 +0800
commit22f85d5af371bb621f8735957b7519d14e3b40c9 (patch)
treeb492d0319e7fd04630dc70aeb2c994931d39a142 /libsolidity/codegen/ContractCompiler.cpp
parent59ea19b3b957949fc53bfb5dc4e199d2196f8d18 (diff)
downloaddexon-solidity-22f85d5af371bb621f8735957b7519d14e3b40c9.tar
dexon-solidity-22f85d5af371bb621f8735957b7519d14e3b40c9.tar.gz
dexon-solidity-22f85d5af371bb621f8735957b7519d14e3b40c9.tar.bz2
dexon-solidity-22f85d5af371bb621f8735957b7519d14e3b40c9.tar.lz
dexon-solidity-22f85d5af371bb621f8735957b7519d14e3b40c9.tar.xz
dexon-solidity-22f85d5af371bb621f8735957b7519d14e3b40c9.tar.zst
dexon-solidity-22f85d5af371bb621f8735957b7519d14e3b40c9.zip
Update tests and error messages.
Diffstat (limited to 'libsolidity/codegen/ContractCompiler.cpp')
-rw-r--r--libsolidity/codegen/ContractCompiler.cpp2
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);