aboutsummaryrefslogtreecommitdiffstats
path: root/Types.cpp
diff options
context:
space:
mode:
authorChristian <c@ethdev.com>2014-10-23 06:24:07 +0800
committerChristian <c@ethdev.com>2014-10-23 06:24:07 +0800
commitfd046d7c9088498fbb0bded6a8ca69554155f483 (patch)
tree848b43ed7ee8c2984ce8748030b4c29c37a0ef10 /Types.cpp
parentc8b008558d1fe7fac56a7de0fa961a853d154880 (diff)
downloaddexon-solidity-fd046d7c9088498fbb0bded6a8ca69554155f483.tar
dexon-solidity-fd046d7c9088498fbb0bded6a8ca69554155f483.tar.gz
dexon-solidity-fd046d7c9088498fbb0bded6a8ca69554155f483.tar.bz2
dexon-solidity-fd046d7c9088498fbb0bded6a8ca69554155f483.tar.lz
dexon-solidity-fd046d7c9088498fbb0bded6a8ca69554155f483.tar.xz
dexon-solidity-fd046d7c9088498fbb0bded6a8ca69554155f483.tar.zst
dexon-solidity-fd046d7c9088498fbb0bded6a8ca69554155f483.zip
Corrected spacing around colon.
Diffstat (limited to 'Types.cpp')
-rw-r--r--Types.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Types.cpp b/Types.cpp
index 88abbc77..7634951a 100644
--- a/Types.cpp
+++ b/Types.cpp
@@ -85,8 +85,8 @@ std::shared_ptr<IntegerType> IntegerType::smallestTypeForLiteral(std::string con
return std::make_shared<IntegerType>(256, Modifier::UNSIGNED);
}
-IntegerType::IntegerType(int _bits, IntegerType::Modifier _modifier)
- : m_bits(_bits), m_modifier(_modifier)
+IntegerType::IntegerType(int _bits, IntegerType::Modifier _modifier):
+ m_bits(_bits), m_modifier(_modifier)
{
BOOST_ASSERT(_bits > 0 && _bits <= 256 && _bits % 8 == 0);
if (isAddress())