aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2016-11-15 02:07:48 +0800
committerGitHub <noreply@github.com>2016-11-15 02:07:48 +0800
commit54555adb67f098161780cbc266b54eead9fe7b8a (patch)
treebb340a4dfc5c56fb196c92516d219a55e53394a3
parent68e776338701f6140d0e58470c503fabc35bc5dc (diff)
parent1ff67b492a821054e5a3990f281500ebc0e56e83 (diff)
downloaddexon-solidity-54555adb67f098161780cbc266b54eead9fe7b8a.tar.gz
dexon-solidity-54555adb67f098161780cbc266b54eead9fe7b8a.tar.zst
dexon-solidity-54555adb67f098161780cbc266b54eead9fe7b8a.zip
Merge pull request #1370 from ethereum/missing_break
codegen: add a missing `break;`
-rw-r--r--libsolidity/codegen/CompilerUtils.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/libsolidity/codegen/CompilerUtils.cpp b/libsolidity/codegen/CompilerUtils.cpp
index dd133aea..54645289 100644
--- a/libsolidity/codegen/CompilerUtils.cpp
+++ b/libsolidity/codegen/CompilerUtils.cpp
@@ -666,6 +666,7 @@ void CompilerUtils::convertType(Type const& _typeOnStack, Type const& _targetTyp
solAssert(_targetType == _typeOnStack, "Invalid conversion for bool.");
if (_cleanupNeeded)
m_context << Instruction::ISZERO << Instruction::ISZERO;
+ break;
default:
// All other types should not be convertible to non-equal types.
solAssert(_typeOnStack == _targetType, "Invalid type conversion requested.");