diff options
author | Tom Tromey <tom@tromey.com> | 2023-03-02 15:05:17 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2024-01-28 10:58:16 -0700 |
commit | c92d4de16a0650ae973cfecf9c563893757a01f1 (patch) | |
tree | 806dfef283b95bdfb261587255a6e8338d3dcfd6 /gdb/symfile.c | |
parent | 25f31e1820dcec2f0c073c28cbf88646c7c2af97 (diff) | |
download | binutils-c92d4de16a0650ae973cfecf9c563893757a01f1.zip binutils-c92d4de16a0650ae973cfecf9c563893757a01f1.tar.gz binutils-c92d4de16a0650ae973cfecf9c563893757a01f1.tar.bz2 |
Replace search_domain with domain_search_flags
This patch changes gdb to replace search_domain with
domain_search_flags everywhere. search_domain is removed.
Diffstat (limited to 'gdb/symfile.c')
-rw-r--r-- | gdb/symfile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/symfile.c b/gdb/symfile.c index 6b9f805..065eaf0 100644 --- a/gdb/symfile.c +++ b/gdb/symfile.c @@ -3769,7 +3769,7 @@ 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, - enum search_domain kind) + domain_search_flags kind) { for (objfile *objfile : current_program_space->objfiles ()) if (!objfile->expand_symtabs_matching (file_matcher, |