Add a space before the initializer.

This commit is contained in:
Roberto Raggi
2009-01-07 10:26:27 +01:00
parent beee08de5a
commit fb0d60ae66

View File

@@ -366,6 +366,7 @@ bool PrettyPrinter::visit(DeclaratorAST *ast)
out << ' ';
}
if (ast->initializer) {
out << ' ';
out << '=';
out << ' ';
accept(ast->initializer);