* symfile.h (struct quick_symbol_functions): Reorg arg list of

map_matching_symbols so objfile is first.  All uses updated.
	* dwarf2read.c (dw2_map_matching_symbols): Update signature.
	* psymtab.c (map_matching_symbols_psymtab): Update signature.
This commit is contained in:
Doug Evans
2013-09-25 21:44:11 +00:00
parent 4e8516b2d9
commit ade7ed9e33
5 changed files with 20 additions and 10 deletions

View File

@ -237,8 +237,9 @@ struct quick_symbol_functions
CALLBACK returns 0 to indicate that the scan should continue, or
non-zero to indicate that the scan should be terminated. */
void (*map_matching_symbols) (const char *name, domain_enum namespace,
struct objfile *, int global,
void (*map_matching_symbols) (struct objfile *,
const char *name, domain_enum namespace,
int global,
int (*callback) (struct block *,
struct symbol *, void *),
void *data,