Skip to content

Commit

Permalink
[lldb] Make 'this' substituton error more verbose.
Browse files Browse the repository at this point in the history
  • Loading branch information
Teemperor committed Oct 6, 2021
1 parent 7862728 commit f98df8a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -910,8 +910,8 @@ bool ClangUserExpression::AddArguments(ExecutionContext &exe_ctx,

if (!object_ptr_error.Success()) {
exe_ctx.GetTargetRef().GetDebugger().GetAsyncOutputStream()->Printf(
"warning: `%s' is not accessible (substituting 0)\n",
object_name.AsCString());
"warning: `%s' is not accessible (substituting 0). %s\n",
object_name.AsCString(), object_ptr_error.AsCString());
object_ptr = 0;
}

Expand Down

0 comments on commit f98df8a

Please sign in to comment.