Include SHR case in ExpressionCompiler::appendShiftOperatorCode

This commit is contained in:
Alex Beregszaszi
2016-06-07 19:39:14 +01:00
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."));
}