diff options
author | Liana Husikyan <liana@ethdev.com> | 2015-03-27 20:28:32 +0800 |
---|---|---|
committer | Liana Husikyan <liana@ethdev.com> | 2015-03-27 20:28:32 +0800 |
commit | a3d829d074859d748f1fd392acb8b5883f646e61 (patch) | |
tree | 83297cd3280973d788bc366bb04bf83c3ef339b0 /AST.h | |
parent | b1ca27ea93907dc500d0b84298f5d63a9d4a7c1d (diff) | |
download | dexon-solidity-a3d829d074859d748f1fd392acb8b5883f646e61.tar.gz dexon-solidity-a3d829d074859d748f1fd392acb8b5883f646e61.tar.zst dexon-solidity-a3d829d074859d748f1fd392acb8b5883f646e61.zip |
added externalTypes function to functionType
removed flag for externalSigniture
Diffstat (limited to 'AST.h')
-rw-r--r-- | AST.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -422,9 +422,9 @@ public: void checkTypeRequirements(); /// @returns the external signature of the function - /// That consists of the name of the function followed by the types (external types if isExternalCall) of the + /// That consists of the name of the function followed by the types of the /// arguments separated by commas all enclosed in parentheses without any spaces. - std::string externalSignature(bool isExternalCall = false) const; + std::string externalSignature() const; private: bool m_isConstructor; |