File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -226,9 +226,13 @@ bool SBSymbol::IsDebug() {
226226}
227227
228228const char *SBSymbol::GetTypeAsString (lldb::SymbolType symbol_type) {
229+ LLDB_INSTRUMENT_VA (symbol_type);
230+
229231 return Symbol::GetTypeAsString (symbol_type);
230232}
231233
232234lldb::SymbolType SBSymbol::GetTypeFromString (const char *str) {
235+ LLDB_INSTRUMENT_VA (str);
236+
233237 return Symbol::GetTypeFromString (str);
234238}
Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments