mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Include SHR case in ExpressionCompiler::appendShiftOperatorCode
This commit is contained in:
parent
f8ccf3eebf
commit
0cb820cf98
@ -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."));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user