aboutsummaryrefslogtreecommitdiff
path: root/source/API/SBBreakpointOptionCommon.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/API/SBBreakpointOptionCommon.cpp')
-rw-r--r--source/API/SBBreakpointOptionCommon.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/API/SBBreakpointOptionCommon.cpp b/source/API/SBBreakpointOptionCommon.cpp
index 058b3e0398cd..870b4b941ada 100644
--- a/source/API/SBBreakpointOptionCommon.cpp
+++ b/source/API/SBBreakpointOptionCommon.cpp
@@ -41,7 +41,7 @@ using namespace lldb_private;
SBBreakpointCallbackBaton::SBBreakpointCallbackBaton(SBBreakpointHitCallback
callback,
void *baton)
- : TypedBaton(llvm::make_unique<CallbackData>()) {
+ : TypedBaton(std::make_unique<CallbackData>()) {
getItem()->callback = callback;
getItem()->callback_baton = baton;
}