From 13c0885a8de099ea02793a1ce0e1d287c62be5ab Mon Sep 17 00:00:00 2001 From: Ted Kremenek Date: Wed, 2 Apr 2008 18:03:20 +0000 Subject: [PATCH] Put "BUGDESC" comment tag on its own line. llvm-svn: 49103 --- clang/Driver/HTMLDiagnostics.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/Driver/HTMLDiagnostics.cpp b/clang/Driver/HTMLDiagnostics.cpp index 79eae90f1256..82696664ac41 100644 --- a/clang/Driver/HTMLDiagnostics.cpp +++ b/clang/Driver/HTMLDiagnostics.cpp @@ -140,7 +140,7 @@ void HTMLDiagnostics::HandlePathDiagnostic(const PathDiagnostic& D) { if (!BugDesc.empty()) { std::ostringstream os; - os << "\n"; + os << "\n\n"; R.InsertStrBefore(SourceLocation::getFileLoc(FileID, 0), os.str()); }