Include SHR case in ExpressionCompiler::appendShiftOperatorCode

This commit is contained in:
Alex Beregszaszi 2016-04-30 00:14:05 +01:00
parent f8ccf3eebf
commit 0cb820cf98

View File

@ -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."));
}