diff options
author | Roberto Raggi <qtc-committer@nokia.com> | 2009-01-05 16:11:28 +0100 |
---|---|---|
committer | Roberto Raggi <qtc-committer@nokia.com> | 2009-01-05 16:11:28 +0100 |
commit | 7cf9888a1e2eaddf45baa2e6fa11196c032d65cc (patch) | |
tree | 052f0417cba7d291d498ef379d5fa612aa520d43 /shared/cplusplus/PrettyPrinter.cpp | |
parent | ab474061a6de718620b3756cbcbbd7bf8ecce29b (diff) | |
download | qt-creator-7cf9888a1e2eaddf45baa2e6fa11196c032d65cc.tar.gz |
Fixed a typo in the pretty printing of TemplateTypeParameterAST.
Diffstat (limited to 'shared/cplusplus/PrettyPrinter.cpp')
-rw-r--r-- | shared/cplusplus/PrettyPrinter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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 << ' '; } |