diff options
Diffstat (limited to 'clang/unittests/Tooling/ExecutionTest.cpp')
-rw-r--r-- | clang/unittests/Tooling/ExecutionTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/unittests/Tooling/ExecutionTest.cpp b/clang/unittests/Tooling/ExecutionTest.cpp index 6c2c91c0585..3e1e51e98fe 100644 --- a/clang/unittests/Tooling/ExecutionTest.cpp +++ b/clang/unittests/Tooling/ExecutionTest.cpp @@ -125,7 +125,7 @@ class TestToolExecutorPlugin : public ToolExecutorPlugin { public: llvm::Expected<std::unique_ptr<ToolExecutor>> create(CommonOptionsParser &OptionsParser) override { - return llvm::make_unique<TestToolExecutor>(std::move(OptionsParser)); + return std::make_unique<TestToolExecutor>(std::move(OptionsParser)); } }; |