aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/codegen/ContractCompiler.h
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2016-11-18 01:23:31 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2016-11-18 01:23:35 +0800
commit910269a29f56265e42bce73694d45481cbd5fd54 (patch)
tree1e642fa848a41f7ef9df4cb0b9d0f269ccf648fb /libsolidity/codegen/ContractCompiler.h
parenta35ca910c798e018c7cedc5a0436674a0c58ca1d (diff)
downloaddexon-solidity-910269a29f56265e42bce73694d45481cbd5fd54.tar.gz
dexon-solidity-910269a29f56265e42bce73694d45481cbd5fd54.tar.zst
dexon-solidity-910269a29f56265e42bce73694d45481cbd5fd54.zip
Add appendCallValueCheck
Diffstat (limited to 'libsolidity/codegen/ContractCompiler.h')
-rw-r--r--libsolidity/codegen/ContractCompiler.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libsolidity/codegen/ContractCompiler.h b/libsolidity/codegen/ContractCompiler.h
index 2244a3be..10febcf7 100644
--- a/libsolidity/codegen/ContractCompiler.h
+++ b/libsolidity/codegen/ContractCompiler.h
@@ -80,6 +80,7 @@ private:
void appendBaseConstructor(FunctionDefinition const& _constructor);
void appendConstructor(FunctionDefinition const& _constructor);
void appendFunctionSelector(ContractDefinition const& _contract);
+ void appendCallValueCheck();
/// 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.
/// Expects source offset on the stack, which is removed.