[Lldb-commits] [lldb] [lldb] Add SBType::FindNestedType() function (PR #68705)
Michael Buch via lldb-commits
lldb-commits at lists.llvm.org
Fri Oct 13 02:40:38 PDT 2023
================
@@ -8,6 +8,9 @@ class Task {
TASK_TYPE_1,
TASK_TYPE_2
} type;
+ enum E : unsigned char {} e;
+ union U {
+ } u;
----------------
Michael137 wrote:
Can you move these below that `struct name`. Just so it's closer to Jim's example where if we did a depth-first search we would've found `name::E`
https://github.com/llvm/llvm-project/pull/68705
More information about the lldb-commits
mailing list