diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2016-04-30 07:15:22 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2016-12-12 18:12:10 +0800 |
commit | b8b4f5e9f9a89eac1218551b5da322b41c7813f4 (patch) | |
tree | 6c7b01ba8f1364d866143b3932092520a339b0af /libsolidity/codegen/ExpressionCompiler.h | |
parent | d0542f0e369a95ed2ae2a02cec2a199e3844c885 (diff) | |
download | dexon-solidity-b8b4f5e9f9a89eac1218551b5da322b41c7813f4.tar.gz dexon-solidity-b8b4f5e9f9a89eac1218551b5da322b41c7813f4.tar.zst dexon-solidity-b8b4f5e9f9a89eac1218551b5da322b41c7813f4.zip |
Support bitshifting in variables
Diffstat (limited to 'libsolidity/codegen/ExpressionCompiler.h')
-rw-r--r-- | libsolidity/codegen/ExpressionCompiler.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libsolidity/codegen/ExpressionCompiler.h b/libsolidity/codegen/ExpressionCompiler.h index f08bded9..e6cf382c 100644 --- a/libsolidity/codegen/ExpressionCompiler.h +++ b/libsolidity/codegen/ExpressionCompiler.h @@ -91,7 +91,7 @@ private: void appendArithmeticOperatorCode(Token::Value _operator, Type const& _type); void appendBitOperatorCode(Token::Value _operator); - void appendShiftOperatorCode(Token::Value _operator); + void appendShiftOperatorCode(Token::Value _operator, Type const& _leftType, Type const& _rightType); /// @} /// Appends code to call a function of the given type with the given arguments. |