summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lldb/source/API/SBBreakpoint.cpp2
-rw-r--r--lldb/source/API/SBBreakpointLocation.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/API/SBBreakpoint.cpp b/lldb/source/API/SBBreakpoint.cpp
index c7d6d6c5b18..9abdce0c928 100644
--- a/lldb/source/API/SBBreakpoint.cpp
+++ b/lldb/source/API/SBBreakpoint.cpp
@@ -280,7 +280,7 @@ bool SBBreakpoint::GetAutoContinue() {
bkpt_sp->GetTarget().GetAPIMutex());
return bkpt_sp->IsAutoContinue();
}
- return nullptr;
+ return false;
}
uint32_t SBBreakpoint::GetHitCount() const {
diff --git a/lldb/source/API/SBBreakpointLocation.cpp b/lldb/source/API/SBBreakpointLocation.cpp
index 2678e1ea758..99ac0277e70 100644
--- a/lldb/source/API/SBBreakpointLocation.cpp
+++ b/lldb/source/API/SBBreakpointLocation.cpp
@@ -165,7 +165,7 @@ bool SBBreakpointLocation::GetAutoContinue() {
loc_sp->GetTarget().GetAPIMutex());
return loc_sp->IsAutoContinue();
}
- return NULL;
+ return false;
}
void SBBreakpointLocation::SetScriptCallbackFunction(
OpenPOWER on IntegriCloud