Skip to content

Commit a5a4bb6

Browse files
committed
Add llvm:: qualifer to make_unique, NFC
To avoid potential "make_unique is ambiguous" compiler errors. llvm-svn: 356878
1 parent de9d736 commit a5a4bb6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

clang-tools-extra/pp-trace/PPTrace.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ class PPTraceAction : public ASTFrontendAction {
8585
StringRef InFile) override {
8686
Preprocessor &PP = CI.getPreprocessor();
8787
PP.addPPCallbacks(
88-
make_unique<PPCallbacksTracker>(Filters, CallbackCalls, PP));
89-
return make_unique<ASTConsumer>();
88+
llvm::make_unique<PPCallbacksTracker>(Filters, CallbackCalls, PP));
89+
return llvm::make_unique<ASTConsumer>();
9090
}
9191

9292
void EndSourceFileAction() override {
@@ -151,7 +151,7 @@ int main(int argc, const char **argv) {
151151
error(EC.message());
152152

153153
if (Error Err = Exec->get()->execute(
154-
make_unique<PPTraceFrontendActionFactory>(Filters, Out.os())))
154+
llvm::make_unique<PPTraceFrontendActionFactory>(Filters, Out.os())))
155155
error(toString(std::move(Err)));
156156
Out.keep();
157157
return 0;

0 commit comments

Comments
 (0)