summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJim Ingham <jingham@apple.com>2017-08-03 19:38:38 +0000
committerJim Ingham <jingham@apple.com>2017-08-03 19:38:38 +0000
commit1c7dc829bc5e1d3a733071a228fec909f5d8ad71 (patch)
treeb9bdfab66dd842f4b59226a99a84e33e923bbb05
parentc7baf8073fa94fad09e7a2b9e682821343987880 (diff)
downloadbcm5719-llvm-1c7dc829bc5e1d3a733071a228fec909f5d8ad71.tar.gz
bcm5719-llvm-1c7dc829bc5e1d3a733071a228fec909f5d8ad71.zip
Cut and paste error from r23162.
llvm-svn: 309977
-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