From: Ted Kremenek Date: Thu, 2 Apr 2009 05:17:38 +0000 (+0000) Subject: Also "flatten" PathLocations fed to the HTMLDiagnosticClient. We need a better X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7db0a94675a0d5f33120e39144c3827d8bc8994f;p=clang Also "flatten" PathLocations fed to the HTMLDiagnosticClient. We need a better long-term strategy, but this should work for now. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@68297 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Frontend/HTMLDiagnostics.cpp b/lib/Frontend/HTMLDiagnostics.cpp index fbca057849..83c2ac56a7 100644 --- a/lib/Frontend/HTMLDiagnostics.cpp +++ b/lib/Frontend/HTMLDiagnostics.cpp @@ -94,6 +94,7 @@ void HTMLDiagnostics::HandlePathDiagnostic(const PathDiagnostic* D) { return; } + const_cast(D)->flattenLocations(); BatchedDiags.push_back(D); }