diff options
author | chriseth <chris@ethereum.org> | 2018-04-06 22:25:13 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2018-05-01 03:34:43 +0800 |
commit | 2968639406888d97bfae70e4adf41674ac60fd83 (patch) | |
tree | cabaf0aff5bfd64fb067b6b537534fc851bc1b41 /libsolidity/codegen/CompilerUtils.h | |
parent | 52c94418795f829c4a225fdf4742eec7a1961232 (diff) | |
download | dexon-solidity-2968639406888d97bfae70e4adf41674ac60fd83.tar dexon-solidity-2968639406888d97bfae70e4adf41674ac60fd83.tar.gz dexon-solidity-2968639406888d97bfae70e4adf41674ac60fd83.tar.bz2 dexon-solidity-2968639406888d97bfae70e4adf41674ac60fd83.tar.lz dexon-solidity-2968639406888d97bfae70e4adf41674ac60fd83.tar.xz dexon-solidity-2968639406888d97bfae70e4adf41674ac60fd83.tar.zst dexon-solidity-2968639406888d97bfae70e4adf41674ac60fd83.zip |
Removed signed shift right from the utilities.
Diffstat (limited to 'libsolidity/codegen/CompilerUtils.h')
-rw-r--r-- | libsolidity/codegen/CompilerUtils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libsolidity/codegen/CompilerUtils.h b/libsolidity/codegen/CompilerUtils.h index 476a7559..8e3a8a5d 100644 --- a/libsolidity/codegen/CompilerUtils.h +++ b/libsolidity/codegen/CompilerUtils.h @@ -254,7 +254,7 @@ public: /// Helper function to shift top value on the stack to the right. /// Stack pre: <value> <shift_by_bits> /// Stack post: <shifted_value> - void rightShiftNumberOnStack(unsigned _bits, bool _isSigned = false); + void rightShiftNumberOnStack(unsigned _bits); /// Appends code that computes tha Keccak-256 hash of the topmost stack element of 32 byte type. void computeHashStatic(); |