diff options
author | Lefteris Karapetsas <lefteris@refu.co> | 2014-12-05 06:55:47 +0800 |
---|---|---|
committer | Lefteris Karapetsas <lefteris@refu.co> | 2014-12-05 06:55:47 +0800 |
commit | dedd1a312ba51c4ed8f9f801628dc23f1b09216d (patch) | |
tree | 60222e8fcc0deb44935a066fc2fd238647b9eb5e /CompilerStack.h | |
parent | 02a04eef5c897dc4c211d14803285bd0485f8877 (diff) | |
download | dexon-solidity-dedd1a312ba51c4ed8f9f801628dc23f1b09216d.tar dexon-solidity-dedd1a312ba51c4ed8f9f801628dc23f1b09216d.tar.gz dexon-solidity-dedd1a312ba51c4ed8f9f801628dc23f1b09216d.tar.bz2 dexon-solidity-dedd1a312ba51c4ed8f9f801628dc23f1b09216d.tar.lz dexon-solidity-dedd1a312ba51c4ed8f9f801628dc23f1b09216d.tar.xz dexon-solidity-dedd1a312ba51c4ed8f9f801628dc23f1b09216d.tar.zst dexon-solidity-dedd1a312ba51c4ed8f9f801628dc23f1b09216d.zip |
Addressing styling and miscellaneous issue with Natspec
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 51195129..de356b1a 100644 --- a/CompilerStack.h +++ b/CompilerStack.h @@ -37,7 +37,7 @@ class Compiler; class GlobalContext; class InterfaceHandler; -enum documentationType: 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 documentationType 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; } |