diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2022-05-04 08:14:22 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@efficios.com> | 2022-05-05 15:27:26 -0400 |
commit | 6e9cd73eb553c372153d6e9ba4934119623fdad3 (patch) | |
tree | 1eb62a3689f410c6554d8d94bff6502d1a9a6849 /gdb/objfiles.h | |
parent | 1653ae5b8440e2182ac86974b99b603bc15aa163 (diff) | |
download | gdb-6e9cd73eb553c372153d6e9ba4934119623fdad3.zip gdb-6e9cd73eb553c372153d6e9ba4934119623fdad3.tar.gz gdb-6e9cd73eb553c372153d6e9ba4934119623fdad3.tar.bz2 |
gdb: use gdb::function_view for gdbarch_iterate_over_objfiles_in_search_order callback
A rather straightforward patch to change an instance of callback +
void pointer to gdb::function_view, allowing pasing lambdas that
capture, and eliminating the need for the untyped pointer.
Change-Id: I73ed644e7849945265a2c763f79f5456695b0037
Diffstat (limited to 'gdb/objfiles.h')
-rw-r--r-- | gdb/objfiles.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gdb/objfiles.h b/gdb/objfiles.h index 8bd7670..cb7a135 100644 --- a/gdb/objfiles.h +++ b/gdb/objfiles.h @@ -903,9 +903,8 @@ extern scoped_restore_tmpl<int> inhibit_section_map_updates (struct program_space *pspace); extern void default_iterate_over_objfiles_in_search_order - (struct gdbarch *gdbarch, - iterate_over_objfiles_in_search_order_cb_ftype *cb, - void *cb_data, struct objfile *current_objfile); + (gdbarch *gdbarch, iterate_over_objfiles_in_search_order_cb_ftype cb, + objfile *current_objfile); /* Reset the per-BFD storage area on OBJ. */ |