aboutsummaryrefslogtreecommitdiff
path: root/gdb/psymtab.h
diff options
context:
space:
mode:
authorJoel Brobecker <brobecker@gnat.com>2012-01-26 04:21:40 +0000
committerJoel Brobecker <brobecker@gnat.com>2012-01-26 04:21:40 +0000
commite078317b28df990d6b0d54020f364df44d1b9ce4 (patch)
tree4b849c873fb7aa06c957a13cedc310bfad9a6c10 /gdb/psymtab.h
parent74ccd7f58b78303b1de7c7823d39821119592c20 (diff)
downloadgdb-e078317b28df990d6b0d54020f364df44d1b9ce4.zip
gdb-e078317b28df990d6b0d54020f364df44d1b9ce4.tar.gz
gdb-e078317b28df990d6b0d54020f364df44d1b9ce4.tar.bz2
Remove language param from name_matcher in struct quick_symbol_functions
The quick_symbol_functions struct contains a field which is pointer a function which takes another function, called name_matcher, as its parameter. This name_matcher currently has 3 arguments, one of them being the language. This parameter is no longer used, and thus deleted. gdb/ChangeLog: * symfile.h (struct quick_symbol_functions) [expand_symtabs_matching]: Remove language parameter from name_matcher. Adjust the comment. * symtab.c (search_symbols_name_matches, expand_partial_symbol_name): Remove language parameter. * ada-lang.c (ada_expand_partial_symbol_name): Likewise. * linespec.c (iterate_name_matcher): Likewise. * dwarf2read.c (dw2_expand_symtabs_matching): Adjust type of name_matcher. Adjust call accordingly. * psymtab.c (expand_symtabs_matching_via_partial): Likewise. (maintenance_check_symtabs): Adjust type of parameter "fun". * psymtab.h (maintenance_check_symtabs): Likewise.
Diffstat (limited to 'gdb/psymtab.h')
-rw-r--r--gdb/psymtab.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/gdb/psymtab.h b/gdb/psymtab.h
index 8fd91ee..4089d46 100644
--- a/gdb/psymtab.h
+++ b/gdb/psymtab.h
@@ -30,8 +30,7 @@ extern struct psymbol_bcache *psymbol_bcache_init (void);
extern void psymbol_bcache_free (struct psymbol_bcache *);
extern struct bcache *psymbol_bcache_get_bcache (struct psymbol_bcache *);
-void expand_partial_symbol_names (int (*fun) (const struct language_defn *,
- const char *, void *),
+void expand_partial_symbol_names (int (*fun) (const char *, void *),
void *data);
void map_partial_symbol_filenames (symbol_filename_ftype *fun, void *data,