summaryrefslogtreecommitdiffstats
path: root/clang-tools-extra/unittests/clang-include-fixer/IncludeFixerTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'clang-tools-extra/unittests/clang-include-fixer/IncludeFixerTest.cpp')
-rw-r--r--clang-tools-extra/unittests/clang-include-fixer/IncludeFixerTest.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/clang-tools-extra/unittests/clang-include-fixer/IncludeFixerTest.cpp b/clang-tools-extra/unittests/clang-include-fixer/IncludeFixerTest.cpp
index ab7ef7973a7..b21017160a2 100644
--- a/clang-tools-extra/unittests/clang-include-fixer/IncludeFixerTest.cpp
+++ b/clang-tools-extra/unittests/clang-include-fixer/IncludeFixerTest.cpp
@@ -92,9 +92,9 @@ static std::string runIncludeFixer(
{SymbolInfo("foo2", SymbolInfo::SymbolKind::Class, "\"foo2.h\"", {}),
SymbolInfo::Signals{}},
};
- auto SymbolIndexMgr = llvm::make_unique<SymbolIndexManager>();
+ auto SymbolIndexMgr = std::make_unique<SymbolIndexManager>();
SymbolIndexMgr->addSymbolIndex(
- [=]() { return llvm::make_unique<InMemorySymbolIndex>(Symbols); });
+ [=]() { return std::make_unique<InMemorySymbolIndex>(Symbols); });
std::vector<IncludeFixerContext> FixerContexts;
IncludeFixerActionFactory Factory(*SymbolIndexMgr, FixerContexts, "llvm");
OpenPOWER on IntegriCloud