Corrected spacing around colon.

This commit is contained in:
Christian
2014-10-23 00:24:07 +02:00
parent c8b008558d
commit fd046d7c90
7 changed files with 68 additions and 73 deletions
+2 -2
View File
@@ -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())