diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2016-04-30 07:14:05 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2016-06-08 02:39:14 +0800 |
commit | 0cb820cf98a2c6b95abcfb42ea5f094c3240a7d4 (patch) | |
tree | 68583021832aa41e8f3a4e1f64c7a84c0510d1ea /libsolidity/codegen | |
parent | f8ccf3eebfa337d9a014c46751eb4ed8331321a2 (diff) | |
download | dexon-solidity-0cb820cf98a2c6b95abcfb42ea5f094c3240a7d4.tar.gz dexon-solidity-0cb820cf98a2c6b95abcfb42ea5f094c3240a7d4.tar.zst dexon-solidity-0cb820cf98a2c6b95abcfb42ea5f094c3240a7d4.zip |
Include SHR case in ExpressionCompiler::appendShiftOperatorCode
Diffstat (limited to 'libsolidity/codegen')
-rw-r--r-- | libsolidity/codegen/ExpressionCompiler.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libsolidity/codegen/ExpressionCompiler.cpp b/libsolidity/codegen/ExpressionCompiler.cpp index 16677093..b973a117 100644 --- a/libsolidity/codegen/ExpressionCompiler.cpp +++ b/libsolidity/codegen/ExpressionCompiler.cpp @@ -1360,6 +1360,8 @@ void ExpressionCompiler::appendShiftOperatorCode(Token::Value _operator) break; case Token::SAR: break; + case Token::SHR: + break; default: BOOST_THROW_EXCEPTION(InternalCompilerError() << errinfo_comment("Unknown shift operator.")); } |