diff options
Diffstat (limited to 'clang/lib/AST/StmtDumper.cpp')
| -rw-r--r-- | clang/lib/AST/StmtDumper.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/AST/StmtDumper.cpp b/clang/lib/AST/StmtDumper.cpp index 2968739c227..54e62fe35b2 100644 --- a/clang/lib/AST/StmtDumper.cpp +++ b/clang/lib/AST/StmtDumper.cpp @@ -425,7 +425,7 @@ void StmtDumper::VisitPredefinedExpr(PredefinedExpr *Node) { void StmtDumper::VisitCharacterLiteral(CharacterLiteral *Node) { DumpExpr(Node); - OS << Node->getValue(); + OS << " " << Node->getValue(); } void StmtDumper::VisitIntegerLiteral(IntegerLiteral *Node) { |

