[Lldb-commits] [PATCH] D138259: Add the ability to see when a type in incomplete.

Greg Clayton via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Thu Nov 17 21:55:38 PST 2022


clayborg added a comment.

We can see this in action with the before "var" output of:

  (InheritsFromOne) ::inherits_from_one = {
    (int) member = 47
  }

And after, we see the "One" class definition and we can see that it is incomplete:

  (InheritsFromOne) ::inherits_from_one = {
    (One) One = <incomplete type> {}
    (int) member = 47
  }


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D138259



More information about the lldb-commits mailing list