diff options
author | chriseth <c@ethdev.com> | 2014-11-07 04:55:01 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2014-11-07 04:55:01 +0800 |
commit | e0ba1c79db652e71535cf56f842a23d14b217994 (patch) | |
tree | 89613fa66079c0d40458af70948a389d2fadb7d7 /ExpressionCompiler.cpp | |
parent | 627c80f0a8b37426c2c6625ff4852d77e4d43464 (diff) | |
download | dexon-solidity-e0ba1c79db652e71535cf56f842a23d14b217994.tar.gz dexon-solidity-e0ba1c79db652e71535cf56f842a23d14b217994.tar.zst dexon-solidity-e0ba1c79db652e71535cf56f842a23d14b217994.zip |
Stylistic changes.
Diffstat (limited to 'ExpressionCompiler.cpp')
-rw-r--r-- | ExpressionCompiler.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/ExpressionCompiler.cpp b/ExpressionCompiler.cpp index 324cd10d..da054920 100644 --- a/ExpressionCompiler.cpp +++ b/ExpressionCompiler.cpp @@ -372,9 +372,7 @@ void ExpressionCompiler::appendTypeConversion(Type const& _typeOnStack, Type con if (_typeOnStack == _targetType && !_cleanupNeeded) return; 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. |