diff options
author | Christian <c@ethdev.com> | 2015-02-15 09:00:33 +0800 |
---|---|---|
committer | Christian <c@ethdev.com> | 2015-02-17 02:25:27 +0800 |
commit | 971cc9b5b9242f36c1fa288615e2bf2d762fbd52 (patch) | |
tree | 100c83123364475d95e5331750578d2ce2602dc7 /Compiler.h | |
parent | d630a67812900036ba4aa7bfd47f07c7adddb247 (diff) | |
download | dexon-solidity-971cc9b5b9242f36c1fa288615e2bf2d762fbd52.tar dexon-solidity-971cc9b5b9242f36c1fa288615e2bf2d762fbd52.tar.gz dexon-solidity-971cc9b5b9242f36c1fa288615e2bf2d762fbd52.tar.bz2 dexon-solidity-971cc9b5b9242f36c1fa288615e2bf2d762fbd52.tar.lz dexon-solidity-971cc9b5b9242f36c1fa288615e2bf2d762fbd52.tar.xz dexon-solidity-971cc9b5b9242f36c1fa288615e2bf2d762fbd52.tar.zst dexon-solidity-971cc9b5b9242f36c1fa288615e2bf2d762fbd52.zip |
Unpacking of dynamically sized arguments.
Diffstat (limited to 'Compiler.h')
-rw-r--r-- | Compiler.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -52,8 +52,8 @@ private: void appendConstructorCall(FunctionDefinition const& _constructor); void appendFunctionSelector(ContractDefinition const& _contract); /// Creates code that unpacks the arguments for the given function represented by a vector of TypePointers. - /// From memory if @a _fromMemory is true, otherwise from call data. @returns the size of the data in bytes. - unsigned appendCalldataUnpacker(TypePointers const& _typeParameters, bool _fromMemory = false); + /// From memory if @a _fromMemory is true, otherwise from call data. + void appendCalldataUnpacker(TypePointers const& _typeParameters, bool _fromMemory = false); void appendReturnValuePacker(TypePointers const& _typeParameters); void registerStateVariables(ContractDefinition const& _contract); |