forked from OSchip/llvm-project
parent
c7baf8073f
commit
1c7dc829bc
|
@ -280,7 +280,7 @@ bool SBBreakpoint::GetAutoContinue() {
|
|||
bkpt_sp->GetTarget().GetAPIMutex());
|
||||
return bkpt_sp->IsAutoContinue();
|
||||
}
|
||||
return nullptr;
|
||||
return false;
|
||||
}
|
||||
|
||||
uint32_t SBBreakpoint::GetHitCount() const {
|
||||
|
|
|
@ -165,7 +165,7 @@ bool SBBreakpointLocation::GetAutoContinue() {
|
|||
loc_sp->GetTarget().GetAPIMutex());
|
||||
return loc_sp->IsAutoContinue();
|
||||
}
|
||||
return NULL;
|
||||
return false;
|
||||
}
|
||||
|
||||
void SBBreakpointLocation::SetScriptCallbackFunction(
|
||||
|
|
Loading…
Reference in New Issue