diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2018-07-24 05:36:24 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-24 05:36:24 +0800 |
commit | 1dac6effed5fd2ca9548dde8b8e1c3a3e0985fa7 (patch) | |
tree | 89b404528cdbfd6c45e33544205ee797ee3e73d7 | |
parent | de90290c2882a580ab5e9cc222bd4caa21ac7667 (diff) | |
parent | a2f03ea9e56b1ac5c2822e05bec4cad9bdf36979 (diff) | |
download | dexon-solidity-1dac6effed5fd2ca9548dde8b8e1c3a3e0985fa7.tar dexon-solidity-1dac6effed5fd2ca9548dde8b8e1c3a3e0985fa7.tar.gz dexon-solidity-1dac6effed5fd2ca9548dde8b8e1c3a3e0985fa7.tar.bz2 dexon-solidity-1dac6effed5fd2ca9548dde8b8e1c3a3e0985fa7.tar.lz dexon-solidity-1dac6effed5fd2ca9548dde8b8e1c3a3e0985fa7.tar.xz dexon-solidity-1dac6effed5fd2ca9548dde8b8e1c3a3e0985fa7.tar.zst dexon-solidity-1dac6effed5fd2ca9548dde8b8e1c3a3e0985fa7.zip |
Merge pull request #4550 from ethereum/fix_abidecode_comment
Fix abiDecode comment
-rw-r--r-- | libsolidity/codegen/CompilerUtils.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libsolidity/codegen/CompilerUtils.h b/libsolidity/codegen/CompilerUtils.h index 26df4765..ad3d7327 100644 --- a/libsolidity/codegen/CompilerUtils.h +++ b/libsolidity/codegen/CompilerUtils.h @@ -97,9 +97,9 @@ public: /// Creates code that unpacks the arguments according to their types specified by a vector of TypePointers. /// From memory if @a _fromMemory is true, otherwise from call data. - /// Calls revert if @a _revertOnOutOfBounds is true and the supplied size is shorter - /// than the static data requirements or if dynamic data pointers reach outside of the - /// area. Also has a hard cap of 0x100000000 for any given length/offset field. + /// Calls revert if the supplied size is shorter than the static data requirements + /// or if dynamic data pointers reach outside of the 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); |