From: Chris Lattner Date: Sun, 26 Aug 2007 03:53:29 +0000 (+0000) Subject: null pointers don't get an extra newline. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4a70adba92ff0e26af87360557ee2e9a6ff529d3;p=clang null pointers don't get an extra newline. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@41415 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/AST/StmtDumper.cpp b/AST/StmtDumper.cpp index 0ac7a19dda..fc58184a1d 100644 --- a/AST/StmtDumper.cpp +++ b/AST/StmtDumper.cpp @@ -46,7 +46,7 @@ namespace { Visit(S); } else { Indent(); - fprintf(F, "<<>>\n"); + fprintf(F, "<<>>"); } --IndentLevel; }