[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:49 PDT 2023
================
@@ -1082,6 +1082,19 @@ bool TypeImpl::GetDescription(lldb_private::Stream &strm,
return true;
}
+CompilerType TypeImpl::FindNestedType(ConstString name) {
+ auto type_system = GetTypeSystem(false);
----------------
bulbazord wrote:
Can you add an inline comment for this false? It's not obvious what it means here. Something like:
```
auto type_system = GetTypeSystem(/*param_name*/ false);
```
https://github.com/llvm/llvm-project/pull/68705
More information about the lldb-commits
mailing list