Skip to content

Commit 08ce147

Browse files
committed
[lldb][test] Fix lldb-test compile error
#82819 made the lookup here ambiguous.
1 parent a7b6583 commit 08ce147

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lldb/tools/lldb-test/lldb-test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -509,8 +509,8 @@ Error opts::symbols::findFunctions(lldb_private::Module &Module) {
509509
ContextOr->IsValid() ? *ContextOr : CompilerDeclContext();
510510

511511
List.Clear();
512-
Module::LookupInfo lookup_info(ConstString(Name), getFunctionNameFlags(),
513-
eLanguageTypeUnknown);
512+
lldb_private::Module::LookupInfo lookup_info(
513+
ConstString(Name), getFunctionNameFlags(), eLanguageTypeUnknown);
514514
Symfile.FindFunctions(lookup_info, ContextPtr, true, List);
515515
}
516516
outs() << formatv("Found {0} functions:\n", List.GetSize());

0 commit comments

Comments
 (0)