We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a71bb2b commit b15e058Copy full SHA for b15e058
Source/Modules/r.cxx
@@ -2095,7 +2095,7 @@ int R::functionWrapper(Node *n) {
2095
String * classtypeobj = NewString(Getattr(parent, "classtypeobj")); // this is the correct name, e.g. ClassName(int)
2096
String * classtype = NewString(Getattr(parent, "classtype")); // this is the "wrong" name e.g. ClassName<int>
2097
2098
- // we replace inside smartname ClassName<int> with ClassName<int>
+ // we replace inside smartname ClassName<int> with ClassName(int)
2099
String * smartname_fixed = NewString(smartname);
2100
Replaceall(classtype, " ", ""); // classtype actually has spaces inside so we remove them
2101
Replaceall(smartname_fixed, classtype, classtypeobj);
0 commit comments