diff options
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; |