aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/interface/Natspec.h
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2017-08-25 17:40:19 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2017-08-25 20:15:08 +0800
commite03dfd84761e72bb7cc5eaa50a9d676148519682 (patch)
tree4eb75d447407651405ec84fe9024f03edd021408 /libsolidity/interface/Natspec.h
parent38035f8e32b39d1215ad30fbff400c10f44b3487 (diff)
downloaddexon-solidity-e03dfd84761e72bb7cc5eaa50a9d676148519682.tar.gz
dexon-solidity-e03dfd84761e72bb7cc5eaa50a9d676148519682.tar.zst
dexon-solidity-e03dfd84761e72bb7cc5eaa50a9d676148519682.zip
Remove unused statements from the Natspec headers
Diffstat (limited to 'libsolidity/interface/Natspec.h')
-rw-r--r--libsolidity/interface/Natspec.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/libsolidity/interface/Natspec.h b/libsolidity/interface/Natspec.h
index 9ac3efea..0701f821 100644
--- a/libsolidity/interface/Natspec.h
+++ b/libsolidity/interface/Natspec.h
@@ -36,27 +36,8 @@ namespace solidity
// Forward declarations
class ContractDefinition;
-class Type;
-using TypePointer = std::shared_ptr<Type const>;
struct DocTag;
-enum class DocTagType: uint8_t
-{
- None = 0,
- Dev,
- Notice,
- Param,
- Return,
- Author,
- Title
-};
-
-enum class CommentOwner
-{
- Contract,
- Function
-};
-
class Natspec
{
public:
@@ -71,14 +52,6 @@ public:
static Json::Value devDocumentation(ContractDefinition const& _contractDef);
private:
- /// @returns a json value suitable for a list of types in function input or output
- /// parameters or other places. If @a _forLibrary is true, complex types are referenced
- /// by name, otherwise they are anonymously expanded.
- static Json::Value formatTypeList(
- std::vector<std::string> const& _names,
- std::vector<TypePointer> const& _types,
- bool _forLibrary
- );
/// @returns concatenation of all content under the given tag name.
static std::string extractDoc(std::multimap<std::string, DocTag> const& _tags, std::string const& _name);
};