aboutsummaryrefslogtreecommitdiffstats
path: root/AST.cpp
diff options
context:
space:
mode:
authorLefteris Karapetsas <lefteris@refu.co>2015-01-07 09:07:34 +0800
committerLefteris Karapetsas <lefteris@refu.co>2015-01-07 09:07:34 +0800
commitb2aa3baded2a81420f371569ec58c60f0ce3f841 (patch)
tree92de46dc84e4a485812e8196b66b7a91033fd1fa /AST.cpp
parent5e875ee072134f867203c920d723f08b08ec67ab (diff)
downloaddexon-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.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/AST.cpp b/AST.cpp
index 62952521..fd8f45a7 100644
--- a/AST.cpp
+++ b/AST.cpp
@@ -122,6 +122,7 @@ std::string FunctionDefinition::getCanonicalSignature()
if (i != parameters.size()) {
ret += ",";
}
+ i++;
}
ret += ")";
return ret;