diff options
author | Marek Kotewicz <marek.kotewicz@gmail.com> | 2015-02-11 22:43:47 +0800 |
---|---|---|
committer | Marek Kotewicz <marek.kotewicz@gmail.com> | 2015-02-11 22:43:47 +0800 |
commit | 7035ae638afa6cd73f536870c84cb06726fb4f34 (patch) | |
tree | b8966e610ba83368a0137164098b3f76602cf2b8 /InterfaceHandler.h | |
parent | d5499d1caf52af93468237b64bfe75d568939aa1 (diff) | |
parent | 11b4e7f7d8cf45be2717bb249cf966788f486ede (diff) | |
download | dexon-solidity-7035ae638afa6cd73f536870c84cb06726fb4f34.tar.gz dexon-solidity-7035ae638afa6cd73f536870c84cb06726fb4f34.tar.zst dexon-solidity-7035ae638afa6cd73f536870c84cb06726fb4f34.zip |
Merge branch 'develop' into jsoncpp_path
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 08232e4d..6aa3f72d 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 |