diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-09-18 22:20:56 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-18 22:20:56 +0800 |
commit | f676325d60dbc6c1120ce5a4478f363622c1b1cf (patch) | |
tree | 83eabcc9ff5b5481da4f98ab8b4d2dde34e0299b /libsolidity/codegen/ContractCompiler.cpp | |
parent | f473a43a25b562ee91aa8ddddd35f4174e0d4456 (diff) | |
parent | c001903cdc6db97f437150375a9b5343c70c3656 (diff) | |
download | dexon-solidity-f676325d60dbc6c1120ce5a4478f363622c1b1cf.tar dexon-solidity-f676325d60dbc6c1120ce5a4478f363622c1b1cf.tar.gz dexon-solidity-f676325d60dbc6c1120ce5a4478f363622c1b1cf.tar.bz2 dexon-solidity-f676325d60dbc6c1120ce5a4478f363622c1b1cf.tar.lz dexon-solidity-f676325d60dbc6c1120ce5a4478f363622c1b1cf.tar.xz dexon-solidity-f676325d60dbc6c1120ce5a4478f363622c1b1cf.tar.zst dexon-solidity-f676325d60dbc6c1120ce5a4478f363622c1b1cf.zip |
Merge pull request #1673 from ethereum/structs
Returning structs
Diffstat (limited to 'libsolidity/codegen/ContractCompiler.cpp')
-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); |