From 7cf9888a1e2eaddf45baa2e6fa11196c032d65cc Mon Sep 17 00:00:00 2001 From: Roberto Raggi Date: Mon, 5 Jan 2009 16:11:28 +0100 Subject: Fixed a typo in the pretty printing of TemplateTypeParameterAST. --- shared/cplusplus/PrettyPrinter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'shared/cplusplus/PrettyPrinter.cpp') diff --git a/shared/cplusplus/PrettyPrinter.cpp b/shared/cplusplus/PrettyPrinter.cpp index 213d21a468..7664d5b6d4 100644 --- a/shared/cplusplus/PrettyPrinter.cpp +++ b/shared/cplusplus/PrettyPrinter.cpp @@ -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 << ' '; } -- cgit v1.2.1