[llvm] [lldb] Add SBType::FindNestedType() function (PR #68705)

Michael Buch via llvm-commits llvm-commits at lists.llvm.org
Fri Oct 13 02:40:39 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 llvm-commits mailing list