aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cgrep.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cgrep.cpp b/cgrep.cpp
index 09958b1..663b8b5 100644
--- a/cgrep.cpp
+++ b/cgrep.cpp
@@ -752,7 +752,7 @@ public:
return llvm::make_unique<MyASTConsumer>(TheRewriter);
#endif
#if __clang_major__ >= 10
- return llvm::make_unique<MyASTConsumer>(TheRewriter);
+ return std::make_unique<MyASTConsumer>(TheRewriter);
#endif
}