[Lldb-commits] [lldb] [lldb] Fix lookup of types in anonymous namespaces with -gsimple-template-names (PR #123054)
Pavel Labath via lldb-commits
lldb-commits at lists.llvm.org
Wed Jan 15 08:03:45 PST 2025
================
@@ -376,7 +378,8 @@ lldb_private::Type *DWARFDIE::ResolveTypeUID(const DWARFDIE &die) const {
return nullptr;
}
-static CompilerContext GetContextEntry(DWARFDIE die) {
+static CompilerContext GetContextEntry(DWARFDIE die,
+ bool complete_template_names) {
----------------
labath wrote:
derive_template_names SGTM, and it also sort of gives a hint that the operation will be more expensive, which seems nice.
https://github.com/llvm/llvm-project/pull/123054
More information about the lldb-commits
mailing list