labath added a comment.

You may want to check that this kind of automatic dereferencing does not send 
lldb into a tailspin if the printed data structure is recursive. I know we had 
problems like that with smart pointer pretty printers.

I'd try some code like:

  #include <ranges>
  #include <vector>
  
  struct A {
    std::ranges::ref_view<std::vector<A>> a;
  };
  
  int main() {
      std::vector<A> v;
      v.push_back(A{v});
      v[0].a = v;
      // print v ?
  }


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D138558/new/

https://reviews.llvm.org/D138558

_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to