From 7cf9888a1e2eaddf45baa2e6fa11196c032d65cc Mon Sep 17 00:00:00 2001
From: Roberto Raggi <qtc-committer@nokia.com>
Date: Mon, 5 Jan 2009 16:11:28 +0100
Subject: [PATCH] Fixed a typo in the pretty printing of
 TemplateTypeParameterAST.

---
 shared/cplusplus/PrettyPrinter.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/shared/cplusplus/PrettyPrinter.cpp b/shared/cplusplus/PrettyPrinter.cpp
index 213d21a468a..7664d5b6d40 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 << ' ';
     }
-- 
GitLab