diff options
author | Lefteris Karapetsas <lefteris@refu.co> | 2014-12-04 08:27:38 +0800 |
---|---|---|
committer | Lefteris Karapetsas <lefteris@refu.co> | 2014-12-04 08:27:38 +0800 |
commit | ba27dc74214d70a4ce8dcfcbb0b15a829f2b050d (patch) | |
tree | 4a5a2cb1c6b1718bab228e18b0fc142bd002faa4 /CompilerStack.h | |
parent | a0ff2179d46404e265226981f8f7cd99c7aba5d1 (diff) | |
download | dexon-solidity-ba27dc74214d70a4ce8dcfcbb0b15a829f2b050d.tar.gz dexon-solidity-ba27dc74214d70a4ce8dcfcbb0b15a829f2b050d.tar.zst dexon-solidity-ba27dc74214d70a4ce8dcfcbb0b15a829f2b050d.zip |
Styling in libsolidity's InterfaceHandler
Diffstat (limited to 'CompilerStack.h')
-rw-r--r-- | CompilerStack.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CompilerStack.h b/CompilerStack.h index 7dc86e2b..51195129 100644 --- a/CompilerStack.h +++ b/CompilerStack.h @@ -37,7 +37,7 @@ class Compiler; class GlobalContext; class InterfaceHandler; -enum documentation_type : unsigned short +enum documentationType: unsigned short { NATSPEC_USER = 1, NATSPEC_DEV, @@ -74,7 +74,7 @@ public: /// Prerequisite: Successful call to parse or compile. /// @param type The type of the documentation to get. /// Can be one of 3 types defined at @c documentation_type - std::string const* getJsonDocumentation(enum documentation_type type); + std::string const* getJsonDocumentation(enum documentationType type); /// Returns the previously used scanner, useful for counting lines during error reporting. Scanner const& getScanner() const { return *m_scanner; } |