Skip to content

Commit

Permalink
[lldb][test] Fix lldb-test compile error
Browse files Browse the repository at this point in the history
#82819 made the lookup here
ambiguous.
  • Loading branch information
DavidSpickett committed Jul 10, 2024
1 parent a7b6583 commit 08ce147
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lldb/tools/lldb-test/lldb-test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -509,8 +509,8 @@ Error opts::symbols::findFunctions(lldb_private::Module &Module) {
ContextOr->IsValid() ? *ContextOr : CompilerDeclContext();

List.Clear();
Module::LookupInfo lookup_info(ConstString(Name), getFunctionNameFlags(),
eLanguageTypeUnknown);
lldb_private::Module::LookupInfo lookup_info(
ConstString(Name), getFunctionNameFlags(), eLanguageTypeUnknown);
Symfile.FindFunctions(lookup_info, ContextPtr, true, List);
}
outs() << formatv("Found {0} functions:\n", List.GetSize());
Expand Down

0 comments on commit 08ce147

Please sign in to comment.