Fixed a typo in the pretty printing of TemplateTypeParameterAST.

This commit is contained in:
Roberto Raggi
2009-01-05 16:11:28 +01:00
parent ab474061a6
commit 7cf9888a1e

View File

@@ -1042,7 +1042,7 @@ bool PrettyPrinter::visit(TemplateTypeParameterAST *ast)
for (DeclarationAST *it = ast->template_parameters; it; it = it->next) {
accept(it);
if (it->next)
out << ",. ";
out << ", ";
}
out << ' ';
}