aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Basic/SyncScope.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/clang/Basic/SyncScope.h')
-rw-r--r--include/clang/Basic/SyncScope.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Basic/SyncScope.h b/include/clang/Basic/SyncScope.h
index 15af02d83cde..ce8fb9cbed13 100644
--- a/include/clang/Basic/SyncScope.h
+++ b/include/clang/Basic/SyncScope.h
@@ -144,7 +144,7 @@ AtomicScopeModel::create(AtomicScopeModelKind K) {
case AtomicScopeModelKind::None:
return std::unique_ptr<AtomicScopeModel>{};
case AtomicScopeModelKind::OpenCL:
- return llvm::make_unique<AtomicScopeOpenCLModel>();
+ return std::make_unique<AtomicScopeOpenCLModel>();
}
llvm_unreachable("Invalid atomic scope model kind");
}