mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-26 17:18:55 +00:00
gdb: replace some so_list parameters to use references
A subsequent patch changes so_list to be linked using intrusive_list. Iterating an intrusive_list yields some references to the list elements. Convert some functions accepting so_list objects to take references, to make things easier and more natural. Add const where possible and convenient. Change-Id: Id5ab5339c3eb6432e809ad14782952d6a45806f3 Approved-By: Pedro Alves <pedro@palves.net> Reviewed-By: Reviewed-By: Lancelot Six <lancelot.six@amd.com>
This commit is contained in:
committed by
Simon Marchi
parent
c1d21880e9
commit
bb86ab837e
@@ -599,7 +599,7 @@ build_section_table (struct bfd *some_bfd)
|
||||
current set of target sections. */
|
||||
|
||||
void
|
||||
program_space::add_target_sections (void *owner,
|
||||
program_space::add_target_sections (const void *owner,
|
||||
const target_section_table §ions)
|
||||
{
|
||||
if (!sections.empty ())
|
||||
@@ -651,7 +651,7 @@ program_space::add_target_sections (struct objfile *objfile)
|
||||
OWNER must be the same value passed to add_target_sections. */
|
||||
|
||||
void
|
||||
program_space::remove_target_sections (void *owner)
|
||||
program_space::remove_target_sections (const void *owner)
|
||||
{
|
||||
gdb_assert (owner != NULL);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user