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); }