mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-26 09:08:59 +00:00
Convert more block functions to methods
This converts block_scope, block_set_scope, block_using, and block_set_using to be methods. These are all done at once to make it easier to also convert block_initialize_namespace at the same time. This was mostly written by script.
This commit is contained in:
@@ -5424,7 +5424,7 @@ ada_add_block_renamings (std::vector<struct block_symbol> &result,
|
||||
symbol_name_matcher_ftype *name_match
|
||||
= ada_get_symbol_name_matcher (lookup_name);
|
||||
|
||||
for (renaming = block_using (block);
|
||||
for (renaming = block->get_using ();
|
||||
renaming != NULL;
|
||||
renaming = renaming->next)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user