aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/codegen
diff options
context:
space:
mode:
authorLeonardo Alt <leo@ethereum.org>2018-07-24 05:31:02 +0800
committerLeonardo Alt <leo@ethereum.org>2018-07-24 05:31:02 +0800
commita2f03ea9e56b1ac5c2822e05bec4cad9bdf36979 (patch)
tree89b404528cdbfd6c45e33544205ee797ee3e73d7 /libsolidity/codegen
parentde90290c2882a580ab5e9cc222bd4caa21ac7667 (diff)
downloaddexon-solidity-a2f03ea9e56b1ac5c2822e05bec4cad9bdf36979.tar
dexon-solidity-a2f03ea9e56b1ac5c2822e05bec4cad9bdf36979.tar.gz
dexon-solidity-a2f03ea9e56b1ac5c2822e05bec4cad9bdf36979.tar.bz2
dexon-solidity-a2f03ea9e56b1ac5c2822e05bec4cad9bdf36979.tar.lz
dexon-solidity-a2f03ea9e56b1ac5c2822e05bec4cad9bdf36979.tar.xz
dexon-solidity-a2f03ea9e56b1ac5c2822e05bec4cad9bdf36979.tar.zst
dexon-solidity-a2f03ea9e56b1ac5c2822e05bec4cad9bdf36979.zip
Fix abiDecode comment
Diffstat (limited to 'libsolidity/codegen')
-rw-r--r--libsolidity/codegen/CompilerUtils.h6
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);