From d9decb8f1d131136eff333579503c5a5a936cc38 Mon Sep 17 00:00:00 2001 From: chriseth Date: Thu, 6 Nov 2014 22:11:21 +0100 Subject: [PATCH] Removed superfluous braces. --- ExpressionCompiler.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/ExpressionCompiler.cpp b/ExpressionCompiler.cpp index 48bcd578d..6efb8b20c 100644 --- a/ExpressionCompiler.cpp +++ b/ExpressionCompiler.cpp @@ -374,10 +374,8 @@ void ExpressionCompiler::appendTypeConversion(Type const& _typeOnStack, Type con if (_typeOnStack.getCategory() == Type::Category::INTEGER) appendHighBitsCleanup(dynamic_cast(_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)