[Lldb-commits] [lldb] [lldb] Add SBType::FindNestedType() function (PR #68705)

Alex Langford via lldb-commits lldb-commits at lists.llvm.org
Tue Oct 10 11:15:48 PDT 2023


================
@@ -586,6 +586,15 @@ lldb::TemplateArgumentKind SBType::GetTemplateArgumentKind(uint32_t idx) {
   return eTemplateArgumentKindNull;
 }
 
+SBType SBType::FindNestedType(const char *name) {
+  LLDB_INSTRUMENT_VA(this);
----------------
bulbazord wrote:

`name` needs to be in the instrumentation macro
```
LLDB_INSTRUMENT_VA(this, name);
```

https://github.com/llvm/llvm-project/pull/68705


More information about the lldb-commits mailing list