diff options
author | Lefteris Karapetsas <lefteris@refu.co> | 2015-01-07 09:07:34 +0800 |
---|---|---|
committer | Lefteris Karapetsas <lefteris@refu.co> | 2015-01-07 09:07:34 +0800 |
commit | b2aa3baded2a81420f371569ec58c60f0ce3f841 (patch) | |
tree | 92de46dc84e4a485812e8196b66b7a91033fd1fa /AST.cpp | |
parent | 5e875ee072134f867203c920d723f08b08ec67ab (diff) | |
download | dexon-solidity-b2aa3baded2a81420f371569ec58c60f0ce3f841.tar.gz dexon-solidity-b2aa3baded2a81420f371569ec58c60f0ce3f841.tar.zst dexon-solidity-b2aa3baded2a81420f371569ec58c60f0ce3f841.zip |
Test for the Canonical Signature of a function
Diffstat (limited to 'AST.cpp')
-rw-r--r-- | AST.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -122,6 +122,7 @@ std::string FunctionDefinition::getCanonicalSignature() if (i != parameters.size()) { ret += ","; } + i++; } ret += ")"; return ret; |