typo in comment

This commit is contained in:
AndLLA 2022-10-02 19:44:49 +02:00 committed by William S Fulton
commit b15e058a27

View file

@ -2095,7 +2095,7 @@ int R::functionWrapper(Node *n) {
String * classtypeobj = NewString(Getattr(parent, "classtypeobj")); // this is the correct name, e.g. ClassName(int)
String * classtype = NewString(Getattr(parent, "classtype")); // this is the "wrong" name e.g. ClassName<int>
// we replace inside smartname ClassName<int> with ClassName<int>
// we replace inside smartname ClassName<int> with ClassName(int)
String * smartname_fixed = NewString(smartname);
Replaceall(classtype, " ", ""); // classtype actually has spaces inside so we remove them
Replaceall(smartname_fixed, classtype, classtypeobj);