aboutsummaryrefslogtreecommitdiffstats
path: root/Types.cpp
diff options
context:
space:
mode:
authorLefteris Karapetsas <lefteris@refu.co>2015-03-12 00:52:18 +0800
committerLefteris Karapetsas <lefteris@refu.co>2015-03-12 19:53:00 +0800
commitc81b4989535cde327b95a65c53fd271dc1e52f82 (patch)
tree290b6de3884751d0b3fa09c2b385e82a31ea8cd6 /Types.cpp
parentb8cede371dc5b7d5c40188dbb65eff293d7dd6ff (diff)
downloaddexon-solidity-c81b4989535cde327b95a65c53fd271dc1e52f82.tar.gz
dexon-solidity-c81b4989535cde327b95a65c53fd271dc1e52f82.tar.zst
dexon-solidity-c81b4989535cde327b95a65c53fd271dc1e52f82.zip
Style fixes in Types[cpp/h]
Diffstat (limited to 'Types.cpp')
-rw-r--r--Types.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/Types.cpp b/Types.cpp
index aacf56fa..6f8d4b6b 100644
--- a/Types.cpp
+++ b/Types.cpp
@@ -178,8 +178,8 @@ bool IntegerType::isImplicitlyConvertibleTo(Type const& _convertTo) const
bool IntegerType::isExplicitlyConvertibleTo(Type const& _convertTo) const
{
return _convertTo.getCategory() == getCategory() ||
- _convertTo.getCategory() == Category::Contract ||
- _convertTo.getCategory() == Category::Enum ||
+ _convertTo.getCategory() == Category::Contract ||
+ _convertTo.getCategory() == Category::Enum ||
_convertTo.getCategory() == Category::FixedBytes;
}
@@ -488,7 +488,6 @@ TypePointer FixedBytesType::unaryOperatorResult(Token::Value _operator) const
TypePointer FixedBytesType::binaryOperatorResult(Token::Value _operator, TypePointer const& _other) const
{
auto commonType = dynamic_pointer_cast<FixedBytesType const>(Type::commonType(shared_from_this(), _other));
-
if (!commonType)
return TypePointer();