aboutsummaryrefslogtreecommitdiff
path: root/Driver/HTMLDiagnostics.cpp
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2008-04-02 18:03:20 +0000
committerTed Kremenek <kremenek@apple.com>2008-04-02 18:03:20 +0000
commit86b4381356dc9ab668cc831ff2f252674d28a91a (patch)
treed14770c8e7505e60f0d7e559b85ba015774e8cc9 /Driver/HTMLDiagnostics.cpp
parent3cc9fdc8c94d1ae056c0c2431dd247f3ea4bf68d (diff)
Put "BUGDESC" comment tag on its own line.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@49103 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Driver/HTMLDiagnostics.cpp')
-rw-r--r--Driver/HTMLDiagnostics.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Driver/HTMLDiagnostics.cpp b/Driver/HTMLDiagnostics.cpp
index 79eae90f12..82696664ac 100644
--- a/Driver/HTMLDiagnostics.cpp
+++ b/Driver/HTMLDiagnostics.cpp
@@ -140,7 +140,7 @@ void HTMLDiagnostics::HandlePathDiagnostic(const PathDiagnostic& D) {
if (!BugDesc.empty()) {
std::ostringstream os;
- os << "<!-- BUGDESC " << BugDesc << " -->\n";
+ os << "\n<!-- BUGDESC " << BugDesc << " -->\n";
R.InsertStrBefore(SourceLocation::getFileLoc(FileID, 0), os.str());
}