Merge pull request #641 from axic/patch/shift-parser

Trivial shift parser fixes
This commit is contained in:
chriseth
2016-06-09 00:21:51 +02:00
2 changed files with 3 additions and 1 deletions
@@ -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."));
}