summaryrefslogtreecommitdiffstats
path: root/tools/libclang/CXLoadedDiagnostic.cpp
diff options
context:
space:
mode:
authorDylan Noblesmith <nobled@dreamwidth.org>2012-02-13 12:32:21 +0000
committerDylan Noblesmith <nobled@dreamwidth.org>2012-02-13 12:32:21 +0000
commit1e4c01b79273b9cd4e9e9ecfd3422df3900b8356 (patch)
tree029722ff2235366d358cf33ff30148dd6de1374e /tools/libclang/CXLoadedDiagnostic.cpp
parent89446751f1c05e18f50560b8dbecb384ed32e2f2 (diff)
drop more llvm:: prefixes on OwningPtr<>
More cleanup after r149798. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@150379 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/libclang/CXLoadedDiagnostic.cpp')
-rw-r--r--tools/libclang/CXLoadedDiagnostic.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/libclang/CXLoadedDiagnostic.cpp b/tools/libclang/CXLoadedDiagnostic.cpp
index 09049e8a0e..d52c18319f 100644
--- a/tools/libclang/CXLoadedDiagnostic.cpp
+++ b/tools/libclang/CXLoadedDiagnostic.cpp
@@ -257,7 +257,7 @@ CXDiagnosticSet DiagLoader::load(const char *file) {
FileSystemOptions FO;
FileManager FileMgr(FO);
- llvm::OwningPtr<llvm::MemoryBuffer> Buffer;
+ OwningPtr<llvm::MemoryBuffer> Buffer;
Buffer.reset(FileMgr.getBufferForFile(file));
if (!Buffer) {
@@ -282,7 +282,7 @@ CXDiagnosticSet DiagLoader::load(const char *file) {
return 0;
}
- llvm::OwningPtr<CXLoadedDiagnosticSetImpl>
+ OwningPtr<CXLoadedDiagnosticSetImpl>
Diags(new CXLoadedDiagnosticSetImpl());
while (true) {
@@ -543,7 +543,7 @@ LoadResult DiagLoader::readDiagnosticBlock(llvm::BitstreamCursor &Stream,
return Failure;
}
- llvm::OwningPtr<CXLoadedDiagnostic> D(new CXLoadedDiagnostic());
+ OwningPtr<CXLoadedDiagnostic> D(new CXLoadedDiagnostic());
RecordData Record;
while (true) {