diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-11-16 00:31:22 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-16 00:31:22 +0800 |
commit | ed3ce43d6d373622822f1d3097c650ef12714a18 (patch) | |
tree | 5d93cef2a24ae32e6ca24fc0b8d94beedb987e11 /libsolidity | |
parent | e3206d8e6ccc97b8b60586bd9e68648c47558bcc (diff) | |
parent | 486647fd38bc3ace6c80fa0d8e2a48f0c128db42 (diff) | |
download | dexon-solidity-ed3ce43d6d373622822f1d3097c650ef12714a18.tar.gz dexon-solidity-ed3ce43d6d373622822f1d3097c650ef12714a18.tar.zst dexon-solidity-ed3ce43d6d373622822f1d3097c650ef12714a18.zip |
Merge pull request #3189 from kseo/unused
Remove unused method
Diffstat (limited to 'libsolidity')
-rw-r--r-- | libsolidity/ast/Types.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libsolidity/ast/Types.h b/libsolidity/ast/Types.h index ce29975e..635279ab 100644 --- a/libsolidity/ast/Types.h +++ b/libsolidity/ast/Types.h @@ -707,10 +707,6 @@ public: /// Returns the function type of the constructor modified to return an object of the contract's type. FunctionTypePointer const& newExpressionType() const; - /// @returns the identifier of the function with the given name or Invalid256 if such a name does - /// not exist. - u256 functionIdentifier(std::string const& _functionName) const; - /// @returns a list of all state variables (including inherited) of the contract and their /// offsets in storage. std::vector<std::tuple<VariableDeclaration const*, u256, unsigned>> stateVariables() const; |