diff options
Diffstat (limited to 'gdb/symfile-debug.c')
-rw-r--r-- | gdb/symfile-debug.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/symfile-debug.c b/gdb/symfile-debug.c index b176324..577b0fc 100644 --- a/gdb/symfile-debug.c +++ b/gdb/symfile-debug.c @@ -272,6 +272,7 @@ objfile::expand_symtabs_matching gdb::function_view<expand_symtabs_symbol_matcher_ftype> symbol_matcher, gdb::function_view<expand_symtabs_exp_notify_ftype> expansion_notify, block_search_flags search_flags, + domain_enum domain, enum search_domain kind) { if (debug_symfile) @@ -286,7 +287,7 @@ objfile::expand_symtabs_matching for (const auto &iter : qf) if (!iter->expand_symtabs_matching (this, file_matcher, lookup_name, symbol_matcher, expansion_notify, - search_flags, kind)) + search_flags, domain, kind)) return false; return true; } |