diff options
author | Liana Husikyan <liana@ethdev.com> | 2015-03-24 18:11:27 +0800 |
---|---|---|
committer | Liana Husikyan <liana@ethdev.com> | 2015-03-25 20:59:46 +0800 |
commit | 9986b072ad471908df4402ef860e58e331035948 (patch) | |
tree | 6bf7625fdbfe4f76e655027bdb421f084f6a58df /Types.h | |
parent | 701b34fbeb1bd08445aad55f82672d35343f5a44 (diff) | |
download | dexon-solidity-9986b072ad471908df4402ef860e58e331035948.tar.gz dexon-solidity-9986b072ad471908df4402ef860e58e331035948.tar.zst dexon-solidity-9986b072ad471908df4402ef860e58e331035948.zip |
renamed externalTypes to externalSignature
Diffstat (limited to 'Types.h')
-rw-r--r-- | Types.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -550,10 +550,10 @@ public: virtual MemberList const& getMembers() const override; Location const& getLocation() const { return m_location; } - /// @returns the external type of this function type given the function name + /// @returns the external signature of this function type given the function name /// If @a _name is not provided (empty string) then the @c m_declaration member of the /// function type is used - std::string externalTypes(std::string const& _name = "") const; + std::string externalSignature(std::string const& _name = "") const; Declaration const& getDeclaration() const { solAssert(m_declaration, "Requested declaration from a FunctionType that has none"); |