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.
1 parent 214f897 commit ebaf26dCopy full SHA for ebaf26d
lldb/source/Commands/CommandObjectThread.cpp
@@ -280,7 +280,7 @@ class ThreadStepScopeOptionGroup : public OptionGroup {
280
if (!success)
281
error.SetErrorStringWithFormat(
282
"invalid boolean value for option '%c': %s", short_option,
283
- option_arg);
+ option_arg.data());
284
else {
285
m_step_in_avoid_no_debug = avoid_no_debug ? eLazyBoolYes : eLazyBoolNo;
286
}
@@ -293,7 +293,7 @@ class ThreadStepScopeOptionGroup : public OptionGroup {
293
294
295
296
297
298
m_step_out_avoid_no_debug = avoid_no_debug ? eLazyBoolYes : eLazyBoolNo;
299
0 commit comments