aboutsummaryrefslogtreecommitdiffstats
path: root/AST.h
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.h
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.h')
-rwxr-xr-xAST.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/AST.h b/AST.h
index 193e7310..bced99f9 100755
--- a/AST.h
+++ b/AST.h
@@ -1119,11 +1119,11 @@ class Literal: public PrimaryExpression
public:
enum class SubDenomination
{
- NONE = Token::ILLEGAL,
- WEI = Token::SubWei,
- SZABO = Token::SubSzabo,
- FINNEY = Token::SubFinney,
- ETHER = Token::SubEther
+ None = Token::ILLEGAL,
+ Wei = Token::SubWei,
+ Szabo = Token::SubSzabo,
+ Finney = Token::SubFinney,
+ Ether = Token::SubEther
};
Literal(Location const& _location, Token::Value _token,
ASTPointer<ASTString> const& _value,