diff options
author | chriseth <c@ethdev.com> | 2015-03-20 01:15:16 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2015-03-20 01:15:16 +0800 |
commit | dba9dd1169d0b8a02287434c0499ccc4a16d97bc (patch) | |
tree | d878a518d1deffea8b99a78062f2597fcd11caaf /ArrayUtils.h | |
parent | 90c519d08f9de494369d122296ae6a9ca0445dad (diff) | |
download | dexon-solidity-dba9dd1169d0b8a02287434c0499ccc4a16d97bc.tar dexon-solidity-dba9dd1169d0b8a02287434c0499ccc4a16d97bc.tar.gz dexon-solidity-dba9dd1169d0b8a02287434c0499ccc4a16d97bc.tar.bz2 dexon-solidity-dba9dd1169d0b8a02287434c0499ccc4a16d97bc.tar.lz dexon-solidity-dba9dd1169d0b8a02287434c0499ccc4a16d97bc.tar.xz dexon-solidity-dba9dd1169d0b8a02287434c0499ccc4a16d97bc.tar.zst dexon-solidity-dba9dd1169d0b8a02287434c0499ccc4a16d97bc.zip |
Byte size checked for zero; coding style.
Diffstat (limited to 'ArrayUtils.h')
-rw-r--r-- | ArrayUtils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ArrayUtils.h b/ArrayUtils.h index 6e4ceec1..22c0646a 100644 --- a/ArrayUtils.h +++ b/ArrayUtils.h @@ -76,7 +76,7 @@ private: /// the storage offset if adding this number again would increase the counter over 32. /// @param byteOffsetPosition the stack offset of the storage byte offset /// @param storageOffsetPosition the stack offset of the storage slot offset - void incrementByteOffset(unsigned byteSize, unsigned byteOffsetPosition, unsigned storageOffsetPosition) const; + void incrementByteOffset(unsigned _byteSize, unsigned _byteOffsetPosition, unsigned _storageOffsetPosition) const; CompilerContext& m_context; }; |