diff options
author | Dylan Noblesmith <nobled@dreamwidth.org> | 2012-02-13 12:32:26 +0000 |
---|---|---|
committer | Dylan Noblesmith <nobled@dreamwidth.org> | 2012-02-13 12:32:26 +0000 |
commit | 36d592718ff342f762e32cbde73d1113f88cb275 (patch) | |
tree | 88fa23ba7153037e08ac0600ee83467216f287dc /tools/libclang/IndexingContext.cpp | |
parent | 1e4c01b79273b9cd4e9e9ecfd3422df3900b8356 (diff) |
drop more llvm:: prefixes on SmallString<>
More cleanup after r149799.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@150380 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/libclang/IndexingContext.cpp')
-rw-r--r-- | tools/libclang/IndexingContext.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/libclang/IndexingContext.cpp b/tools/libclang/IndexingContext.cpp index 47d7ff42a9..0493f938ac 100644 --- a/tools/libclang/IndexingContext.cpp +++ b/tools/libclang/IndexingContext.cpp @@ -994,7 +994,7 @@ void IndexingContext::getEntityInfo(const NamedDecl *D, EntityInfo.name = 0; // anonymous tag/field/namespace. } else { - llvm::SmallString<256> StrBuf; + SmallString<256> StrBuf; { llvm::raw_svector_ostream OS(StrBuf); D->printName(OS); @@ -1003,7 +1003,7 @@ void IndexingContext::getEntityInfo(const NamedDecl *D, } { - llvm::SmallString<512> StrBuf; + SmallString<512> StrBuf; bool Ignore = getDeclCursorUSR(D, StrBuf); if (Ignore) { EntityInfo.USR = 0; |