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 a268782 commit 675ea74Copy full SHA for 675ea74
generator/parser/name_compiler.cpp
@@ -108,7 +108,7 @@ void NameCompiler::visitUnqualifiedName(UnqualifiedNameAST *node)
108
// ### cleanup
109
_M_name.last() += QLatin1String("<");
110
visitNodes(this, node->template_arguments);
111
- _M_name.last().truncate(_M_name.last().count() - 1); // remove the last ','
+ _M_name.last().truncate(_M_name.last().length() - 1); // remove the last ','
112
_M_name.last() += QLatin1String(">");
113
}
114
0 commit comments