From 7db0a94675a0d5f33120e39144c3827d8bc8994f Mon Sep 17 00:00:00 2001 From: Ted Kremenek Date: Thu, 2 Apr 2009 05:17:38 +0000 Subject: [PATCH] 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 --- lib/Frontend/HTMLDiagnostics.cpp | 1 + 1 file changed, 1 insertion(+) 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); } -- 2.50.1