[Lldb-commits] [PATCH] D47991: Improve SBThread's stepping API using SBError parameter.

Alexander Polyakov via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Wed Jun 20 11:19:42 PDT 2018


apolyakov added a comment.

I think we just can make old versions of API methods returning SBError in all cases. This way we'll deal with SBError and won't break down API calls.
For example:

  // old
  void StepOver() {
    ...
  }
  
  // new
  SBError StepOver() {
    ...
    return sb_error;
  }


https://reviews.llvm.org/D47991





More information about the lldb-commits mailing list