diff options
author | David Blaikie <dblaikie@gmail.com> | 2011-09-26 00:51:36 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2011-09-26 00:51:36 +0000 |
commit | ef3643fbbbf66247c5e205497fae0f46e240c143 (patch) | |
tree | fab83d68060136220f16eabfbf4e49e462e6a507 /lib/StaticAnalyzer/Core/PathDiagnostic.cpp | |
parent | c3516afb24f62e974e3e8db51437e72deab28b7e (diff) |
Rename PathDiagnosticClient to PathDiagnosticConsumer as per issue 5397
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140492 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/StaticAnalyzer/Core/PathDiagnostic.cpp')
-rw-r--r-- | lib/StaticAnalyzer/Core/PathDiagnostic.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/StaticAnalyzer/Core/PathDiagnostic.cpp b/lib/StaticAnalyzer/Core/PathDiagnostic.cpp index 76acfc2e31..3a879030da 100644 --- a/lib/StaticAnalyzer/Core/PathDiagnostic.cpp +++ b/lib/StaticAnalyzer/Core/PathDiagnostic.cpp @@ -82,10 +82,10 @@ PathDiagnostic::PathDiagnostic(StringRef bugtype, StringRef desc, Desc(StripTrailingDots(desc)), Category(StripTrailingDots(category)) {} -void PathDiagnosticClient::HandlePathDiagnostic(const PathDiagnostic *D) { +void PathDiagnosticConsumer::HandlePathDiagnostic(const PathDiagnostic *D) { // For now this simply forwards to HandlePathDiagnosticImpl. In the future // we can use this indirection to control for multi-threaded access to - // the PathDiagnosticClient from multiple bug reporters. + // the PathDiagnosticConsumer from multiple bug reporters. HandlePathDiagnosticImpl(D); } |