diff options
Diffstat (limited to 'clang/unittests/StaticAnalyzer/CallDescriptionTest.cpp')
-rw-r--r-- | clang/unittests/StaticAnalyzer/CallDescriptionTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/unittests/StaticAnalyzer/CallDescriptionTest.cpp b/clang/unittests/StaticAnalyzer/CallDescriptionTest.cpp index 9201922f5be..86cd6a40f07 100644 --- a/clang/unittests/StaticAnalyzer/CallDescriptionTest.cpp +++ b/clang/unittests/StaticAnalyzer/CallDescriptionTest.cpp @@ -93,7 +93,7 @@ public: std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &Compiler, StringRef File) override { - return llvm::make_unique<CallDescriptionConsumer>(Compiler, RM); + return std::make_unique<CallDescriptionConsumer>(Compiler, RM); } }; |