[Lldb-commits] [lldb] [lldb] Fix "exact match" debug_names type queries (PR #118465)
Michael Buch via lldb-commits
lldb-commits at lists.llvm.org
Tue Dec 3 04:28:40 PST 2024
================
@@ -527,7 +527,7 @@ void DebugNamesDWARFIndex::GetTypesWithQuery(
ConstString name = query.GetTypeBasename();
std::vector<lldb_private::CompilerContext> query_context =
query.GetContextRef();
- if (query_context.size() <= 1)
+ if (query_context.size() <= 1 && !query.GetExactMatch())
----------------
Michael137 wrote:
Ah whoops, you're right I was looking at the wrong overload.
https://github.com/llvm/llvm-project/pull/118465
More information about the lldb-commits
mailing list