We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 59c26ae + 4e59474 commit a0b42b9Copy full SHA for a0b42b9
lldb/source/API/SBTarget.cpp
@@ -2416,13 +2416,13 @@ bool SBTarget::IsLoaded(const SBModule &module) const {
2416
2417
TargetSP target_sp(GetSP());
2418
if (!target_sp)
2419
- return LLDB_RECORD_RESULT(false);
+ return false;
2420
2421
ModuleSP module_sp(module.GetSP());
2422
if (!module_sp)
2423
2424
2425
- return LLDB_RECORD_RESULT(module_sp->IsLoadedInTarget(target_sp.get()));
+ return module_sp->IsLoadedInTarget(target_sp.get());
2426
}
2427
2428
lldb::SBLaunchInfo SBTarget::GetLaunchInfo() const {
0 commit comments