diff options
author | David Blaikie <dblaikie@gmail.com> | 2011-09-26 01:18:08 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2011-09-26 01:18:08 +0000 |
commit | b5784324b3070c9f4788bdce40d8f9e347bc255d (patch) | |
tree | 210c5da1f406e0acd64f86665c3be8b4ca42443c /clang/lib/Basic/DiagnosticIDs.cpp | |
parent | 53c125d0631cb85809d1a9822de9e5e01c95ea11 (diff) | |
download | bcm5719-llvm-b5784324b3070c9f4788bdce40d8f9e347bc255d.tar.gz bcm5719-llvm-b5784324b3070c9f4788bdce40d8f9e347bc255d.zip |
Rename DiagnosticInfo to Diagnostic as per issue 5397
llvm-svn: 140493
Diffstat (limited to 'clang/lib/Basic/DiagnosticIDs.cpp')
-rw-r--r-- | clang/lib/Basic/DiagnosticIDs.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Basic/DiagnosticIDs.cpp b/clang/lib/Basic/DiagnosticIDs.cpp index eda2f8e19fc..4b88c60ead9 100644 --- a/clang/lib/Basic/DiagnosticIDs.cpp +++ b/clang/lib/Basic/DiagnosticIDs.cpp @@ -674,7 +674,7 @@ bool DiagnosticIDs::setDiagnosticGroupMapping(StringRef Group, /// ProcessDiag - This is the method used to report a diagnostic that is /// finally fully formed. bool DiagnosticIDs::ProcessDiag(DiagnosticsEngine &Diag) const { - DiagnosticInfo Info(&Diag); + Diagnostic Info(&Diag); if (Diag.SuppressAllDiagnostics) return false; |