diff options
author | Lefteris Karapetsas <lefteris@refu.co> | 2015-02-06 06:03:24 +0800 |
---|---|---|
committer | Lefteris Karapetsas <lefteris@refu.co> | 2015-02-06 06:03:24 +0800 |
commit | c966ff246fefad4d9522eb87f4cf80dd51a92465 (patch) | |
tree | bb818286c87b1bd5c8c522c317f561d39f3099c2 /AST.cpp | |
parent | 305f54b23f9643538a7e3a06d855271be0949035 (diff) | |
download | dexon-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.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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() |