Put "BUGDESC" comment tag on its own line.

llvm-svn: 49103
This commit is contained in:
Ted Kremenek 2008-04-02 18:03:20 +00:00
parent 383bfd27d0
commit 13c0885a8d
1 changed files with 1 additions and 1 deletions

View File

@ -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());
}