Skip to content

Commit 30601fa

Browse files
committed
fix docs
1 parent 300819c commit 30601fa

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

lldb/source/API/SBSymbol.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -226,9 +226,13 @@ bool SBSymbol::IsDebug() {
226226
}
227227

228228
const char *SBSymbol::GetTypeAsString(lldb::SymbolType symbol_type) {
229+
LLDB_INSTRUMENT_VA(symbol_type);
230+
229231
return Symbol::GetTypeAsString(symbol_type);
230232
}
231233

232234
lldb::SymbolType SBSymbol::GetTypeFromString(const char *str) {
235+
LLDB_INSTRUMENT_VA(str);
236+
233237
return Symbol::GetTypeFromString(str);
234238
}

lldb/source/API/SBTarget.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1575,7 +1575,7 @@ SBModule SBTarget::FindModule(const SBModuleSpec &sb_module_spec) {
15751575

15761576
SBModule sb_module;
15771577
if (TargetSP target_sp = GetSP(); target_sp && sb_module_spec.IsValid()) {
1578-
// The module list is thread safe, no need to lock
1578+
// The module list is thread safe, no need to lock.
15791579
sb_module.SetSP(
15801580
target_sp->GetImages().FindFirstModule(*sb_module_spec.m_opaque_up));
15811581
}

0 commit comments

Comments
 (0)