diff options
author | bloodstalker <thabogre@gmail.com> | 2019-10-13 17:18:41 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2019-10-13 17:18:41 +0000 |
commit | e5e9d2b3ada1bb214d60541e51723d81f2a8e081 (patch) | |
tree | f88ac84de6d8f130d1be9224336a3e595f48be1d | |
parent | added the awk option. need to check correction though. travis now checks for ... (diff) | |
download | cgrep-e5e9d2b3ada1bb214d60541e51723d81f2a8e081.tar.gz cgrep-e5e9d2b3ada1bb214d60541e51723d81f2a8e081.zip |
missed something
-rw-r--r-- | cgrep.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 } |