From fb0d60ae66c0ae5b97536e2f4ce258e304553fee Mon Sep 17 00:00:00 2001 From: Roberto Raggi <qtc-committer@nokia.com> Date: Wed, 7 Jan 2009 10:26:27 +0100 Subject: [PATCH] Add a space before the initializer. --- shared/cplusplus/PrettyPrinter.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/shared/cplusplus/PrettyPrinter.cpp b/shared/cplusplus/PrettyPrinter.cpp index d6addb855b0..8a8b43bb37b 100644 --- a/shared/cplusplus/PrettyPrinter.cpp +++ b/shared/cplusplus/PrettyPrinter.cpp @@ -366,6 +366,7 @@ bool PrettyPrinter::visit(DeclaratorAST *ast) out << ' '; } if (ast->initializer) { + out << ' '; out << '='; out << ' '; accept(ast->initializer); -- GitLab