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/unittests | |
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/unittests')
-rw-r--r-- | clang/unittests/AST/APValueTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/unittests/AST/APValueTest.cpp b/clang/unittests/AST/APValueTest.cpp index 44ad8cc3880..98cb086931e 100644 --- a/clang/unittests/AST/APValueTest.cpp +++ b/clang/unittests/AST/APValueTest.cpp @@ -25,7 +25,7 @@ class DiagnosticOutputGetter { SmallString<64> LastDiagnostic; public: virtual void HandleDiagnostic(DiagnosticsEngine::Level DiagLevel, - const DiagnosticInfo &Info) { + const Diagnostic &Info) { LastDiagnostic.clear(); Info.FormatDiagnostic(LastDiagnostic); } |