summaryrefslogtreecommitdiffstats
path: root/clang-tools-extra/clang-include-fixer/FuzzySymbolIndex.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'clang-tools-extra/clang-include-fixer/FuzzySymbolIndex.cpp')
-rw-r--r--clang-tools-extra/clang-include-fixer/FuzzySymbolIndex.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang-tools-extra/clang-include-fixer/FuzzySymbolIndex.cpp b/clang-tools-extra/clang-include-fixer/FuzzySymbolIndex.cpp
index 099d7389cc7..58a320eea31 100644
--- a/clang-tools-extra/clang-include-fixer/FuzzySymbolIndex.cpp
+++ b/clang-tools-extra/clang-include-fixer/FuzzySymbolIndex.cpp
@@ -134,7 +134,7 @@ FuzzySymbolIndex::createFromYAML(StringRef FilePath) {
auto Buffer = llvm::MemoryBuffer::getFile(FilePath);
if (!Buffer)
return llvm::errorCodeToError(Buffer.getError());
- return llvm::make_unique<MemSymbolIndex>(
+ return std::make_unique<MemSymbolIndex>(
find_all_symbols::ReadSymbolInfosFromYAML(Buffer.get()->getBuffer()));
}
OpenPOWER on IntegriCloud