diff options
Diffstat (limited to 'clang/tools/clang-refactor/TestSupport.cpp')
-rw-r--r-- | clang/tools/clang-refactor/TestSupport.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/tools/clang-refactor/TestSupport.cpp b/clang/tools/clang-refactor/TestSupport.cpp index 7d5d5471dcd..9d2d9662276 100644 --- a/clang/tools/clang-refactor/TestSupport.cpp +++ b/clang/tools/clang-refactor/TestSupport.cpp @@ -256,7 +256,7 @@ bool TestRefactoringResultConsumer::handleAllResults() { std::unique_ptr<ClangRefactorToolConsumerInterface> TestSelectionRangesInFile::createConsumer() const { - return llvm::make_unique<TestRefactoringResultConsumer>(*this); + return std::make_unique<TestRefactoringResultConsumer>(*this); } /// Adds the \p ColumnOffset to file offset \p Offset, without going past a |