From b2aa3baded2a81420f371569ec58c60f0ce3f841 Mon Sep 17 00:00:00 2001 From: Lefteris Karapetsas Date: Wed, 7 Jan 2015 02:07:34 +0100 Subject: Test for the Canonical Signature of a function --- AST.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'AST.cpp') 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; -- cgit