From 305f54b23f9643538a7e3a06d855271be0949035 Mon Sep 17 00:00:00 2001 From: Lefteris Karapetsas Date: Thu, 5 Feb 2015 22:38:07 +0100 Subject: Minor Style fixes --- AST.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'AST.cpp') diff --git a/AST.cpp b/AST.cpp index 307168ed..455dc44a 100644 --- a/AST.cpp +++ b/AST.cpp @@ -599,10 +599,10 @@ Literal::Literal(Location const& _location, Token::Value _token, Token::Value _sub): PrimaryExpression(_location), m_token(_token), m_value(_value) { - if(Token::isEtherSubdenomination(_sub)) - m_subDenomination = static_cast(_sub); + if (Token::isEtherSubdenomination(_sub)) + m_subDenomination = static_cast(_sub); else - m_subDenomination = Literal::ethSubDenomination::NONE; + m_subDenomination = Literal::SubDenomination::NONE; } void Literal::checkTypeRequirements() -- cgit