From 9c6c9a806d44e237573ba2014be88f014f3679af Mon Sep 17 00:00:00 2001 From: Konstantin Pavlov Date: Wed, 26 Jun 2024 14:52:57 -0700 Subject: [PATCH] Followup on efbae610061a685b0561297116d1606087368233 --- ngx-ast.cc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ngx-ast.cc b/ngx-ast.cc index 8266310..1b4a7e2 100644 --- a/ngx-ast.cc +++ b/ngx-ast.cc @@ -168,27 +168,27 @@ class FindNamedClassVisitor : public RecursiveASTVisitor { const char type = flags.back(); if (flags == "FD") { - return llvm::make_unique( + return std::make_unique( int_arg_handler, this->Context, this->CI); } if (flags == "FN") { - return llvm::make_unique( + return std::make_unique( nxt_file_name_arg_handler, this->Context, this->CI); } if (flags == "PI" || flags == "PT") { - return llvm::make_unique( + return std::make_unique( pid_arg_handler, this->Context, this->CI); } if (flags == "PF") { - return llvm::make_unique( + return std::make_unique( nxt_fid_arg_handler, this->Context, this->CI); } if (flags == "PH") { - return llvm::make_unique( + return std::make_unique( pthread_arg_handler, this->Context, this->CI); }