Removed superfluous braces.

This commit is contained in:
chriseth 2014-11-06 22:11:21 +01:00
parent 6c2e3ffd76
commit d9decb8f1d

View File

@ -374,10 +374,8 @@ void ExpressionCompiler::appendTypeConversion(Type const& _typeOnStack, Type con
if (_typeOnStack.getCategory() == Type::Category::INTEGER)
appendHighBitsCleanup(dynamic_cast<IntegerType const&>(_typeOnStack));
else if (_typeOnStack != _targetType)
{
// All other types should not be convertible to non-equal types.
BOOST_THROW_EXCEPTION(InternalCompilerError() << errinfo_comment("Invalid type conversion requested."));
}
}
void ExpressionCompiler::appendHighBitsCleanup(IntegerType const& _typeOnStack)