aboutsummaryrefslogtreecommitdiffstats
path: root/Compiler.h
diff options
context:
space:
mode:
authorChristian <c@ethdev.com>2015-02-15 09:00:33 +0800
committerChristian <c@ethdev.com>2015-02-17 02:25:27 +0800
commit971cc9b5b9242f36c1fa288615e2bf2d762fbd52 (patch)
tree100c83123364475d95e5331750578d2ce2602dc7 /Compiler.h
parentd630a67812900036ba4aa7bfd47f07c7adddb247 (diff)
downloaddexon-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.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Compiler.h b/Compiler.h
index b3eae5b1..5d5b6d47 100644
--- a/Compiler.h
+++ b/Compiler.h
@@ -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);