aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/codegen/CompilerUtils.h
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-07-02 18:55:22 +0800
committerGitHub <noreply@github.com>2018-07-02 18:55:22 +0800
commit85b9d3927a46748583a78e84c87559933954aebc (patch)
treebe4387a934cdefff0f603f14f6966e1a4c140f8e /libsolidity/codegen/CompilerUtils.h
parenta5608b31a759031377ec91300ad7a470d48bb1d2 (diff)
parent7763d21cc6181204b1454437b051ac56d3e89339 (diff)
downloaddexon-solidity-85b9d3927a46748583a78e84c87559933954aebc.tar
dexon-solidity-85b9d3927a46748583a78e84c87559933954aebc.tar.gz
dexon-solidity-85b9d3927a46748583a78e84c87559933954aebc.tar.bz2
dexon-solidity-85b9d3927a46748583a78e84c87559933954aebc.tar.lz
dexon-solidity-85b9d3927a46748583a78e84c87559933954aebc.tar.xz
dexon-solidity-85b9d3927a46748583a78e84c87559933954aebc.tar.zst
dexon-solidity-85b9d3927a46748583a78e84c87559933954aebc.zip
Merge pull request #4224 from ethereum/revert_wrong_calldata
[BREAKING] Revert if calldata has wrong size
Diffstat (limited to 'libsolidity/codegen/CompilerUtils.h')
-rw-r--r--libsolidity/codegen/CompilerUtils.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libsolidity/codegen/CompilerUtils.h b/libsolidity/codegen/CompilerUtils.h
index 8e3a8a5d..0ff3ad7c 100644
--- a/libsolidity/codegen/CompilerUtils.h
+++ b/libsolidity/codegen/CompilerUtils.h
@@ -102,7 +102,7 @@ public:
/// area. Also has a hard cap of 0x100000000 for any given length/offset field.
/// Stack pre: <source_offset> <length>
/// Stack post: <value0> <value1> ... <valuen>
- void abiDecode(TypePointers const& _typeParameters, bool _fromMemory = false, bool _revertOnOutOfBounds = false);
+ void abiDecode(TypePointers const& _typeParameters, bool _fromMemory = false);
/// Copies values (of types @a _givenTypes) given on the stack to a location in memory given
/// at the stack top, encoding them according to the ABI as the given types @a _targetTypes.