Test for the Canonical Signature of a function

This commit is contained in:
Lefteris Karapetsas 2015-01-07 02:07:34 +01:00
parent 5e875ee072
commit b2aa3baded

View File

@ -122,6 +122,7 @@ std::string FunctionDefinition::getCanonicalSignature()
if (i != parameters.size()) {
ret += ",";
}
i++;
}
ret += ")";
return ret;