diff options
author | Robert Wilhelm <robert.wilhelm@gmx.net> | 2013-08-10 12:33:24 +0000 |
---|---|---|
committer | Robert Wilhelm <robert.wilhelm@gmx.net> | 2013-08-10 12:33:24 +0000 |
commit | b869a8f596d1e34298f64b3b6652076aa6e44dc4 (patch) | |
tree | f1dac887d487e288043e6048ccc9ab13b346bb17 /clang/lib/Sema/SemaDeclObjC.cpp | |
parent | 074a518f03cb8a2254796b86268e473b8f739dd3 (diff) | |
download | bcm5719-llvm-b869a8f596d1e34298f64b3b6652076aa6e44dc4.tar.gz bcm5719-llvm-b869a8f596d1e34298f64b3b6652076aa6e44dc4.zip |
Omit llvm:: before SmallVector and SmallVectorImpl. We have using directive in include/clang/Basic/LLVM.h.
llvm-svn: 188138
Diffstat (limited to 'clang/lib/Sema/SemaDeclObjC.cpp')
-rw-r--r-- | clang/lib/Sema/SemaDeclObjC.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Sema/SemaDeclObjC.cpp b/clang/lib/Sema/SemaDeclObjC.cpp index 101ae7e57a5..93620a1d82c 100644 --- a/clang/lib/Sema/SemaDeclObjC.cpp +++ b/clang/lib/Sema/SemaDeclObjC.cpp @@ -2228,7 +2228,7 @@ ObjCMethodDecl *Sema::LookupMethodInGlobalPool(Selector Sel, SourceRange R, // Gather the non-hidden methods. ObjCMethodList &MethList = instance ? Pos->second.first : Pos->second.second; - llvm::SmallVector<ObjCMethodDecl *, 4> Methods; + SmallVector<ObjCMethodDecl *, 4> Methods; for (ObjCMethodList *M = &MethList; M; M = M->getNext()) { if (M->Method && !M->Method->isHidden()) { // If we're not supposed to warn about mismatches, we're done. |