aboutsummaryrefslogtreecommitdiffstats
path: root/AST.cpp
diff options
context:
space:
mode:
authorLefteris Karapetsas <lefteris@refu.co>2015-02-06 06:03:24 +0800
committerLefteris Karapetsas <lefteris@refu.co>2015-02-06 06:03:24 +0800
commitc966ff246fefad4d9522eb87f4cf80dd51a92465 (patch)
treebb818286c87b1bd5c8c522c317f561d39f3099c2 /AST.cpp
parent305f54b23f9643538a7e3a06d855271be0949035 (diff)
downloaddexon-solidity-c966ff246fefad4d9522eb87f4cf80dd51a92465.tar.gz
dexon-solidity-c966ff246fefad4d9522eb87f4cf80dd51a92465.tar.zst
dexon-solidity-c966ff246fefad4d9522eb87f4cf80dd51a92465.zip
More style changes in enums
Diffstat (limited to 'AST.cpp')
-rw-r--r--AST.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/AST.cpp b/AST.cpp
index 455dc44a..50a67a8d 100644
--- a/AST.cpp
+++ b/AST.cpp
@@ -602,7 +602,7 @@ Literal::Literal(Location const& _location, Token::Value _token,
if (Token::isEtherSubdenomination(_sub))
m_subDenomination = static_cast<Literal::SubDenomination>(_sub);
else
- m_subDenomination = Literal::SubDenomination::NONE;
+ m_subDenomination = Literal::SubDenomination::None;
}
void Literal::checkTypeRequirements()