diff options
author | Lefteris Karapetsas <lefteris@refu.co> | 2015-02-09 21:12:36 +0800 |
---|---|---|
committer | Lefteris Karapetsas <lefteris@refu.co> | 2015-02-09 21:12:36 +0800 |
commit | 7c0ae1a82f28f3a3679ee7160d0080eac9ca5b9c (patch) | |
tree | 2a6ea64e3f412f91a41c47f732a5f942f0586f5d /InterfaceHandler.h | |
parent | 3ef75bae6b734aa8b55f45da48bc9f396a5f2040 (diff) | |
download | dexon-solidity-7c0ae1a82f28f3a3679ee7160d0080eac9ca5b9c.tar.gz dexon-solidity-7c0ae1a82f28f3a3679ee7160d0080eac9ca5b9c.tar.zst dexon-solidity-7c0ae1a82f28f3a3679ee7160d0080eac9ca5b9c.zip |
Styling in Natspec Enums
Diffstat (limited to 'InterfaceHandler.h')
-rw-r--r-- | InterfaceHandler.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/InterfaceHandler.h b/InterfaceHandler.h index 2b62cabd..c6da63de 100644 --- a/InterfaceHandler.h +++ b/InterfaceHandler.h @@ -41,19 +41,19 @@ enum class DocumentationType: uint8_t; enum class DocTagType: uint8_t { - NONE = 0, - DEV, - NOTICE, - PARAM, - RETURN, - AUTHOR, - TITLE + None = 0, + Dev, + Notice, + Param, + Return, + Author, + Title }; enum class CommentOwner { - CONTRACT, - FUNCTION + Contract, + Function }; class InterfaceHandler |