From efad9b6a7ad68e3e85dd28a12b567f84d6860d17 Mon Sep 17 00:00:00 2001 From: Jan Kratochvil Date: Fri, 5 Dec 2014 19:11:53 +0100 Subject: Remove const from many struct objfile * I am just not sure if we should go the route of struct objfile * -> const struct objfile * or the other way of: const struct objfile * -> struct objfile * Normally const adding is better but here I do not see much useful to have any struct objfile * const and then it just causes pointer compatibility problems. On Wed, 03 Dec 2014 18:18:44 +0100, Doug Evans wrote: struct objfile is one case where I've decided to just leave the const out and not worry about it. gdb/ChangeLog 2014-12-05 Jan Kratochvil Remove const from struct objfile *. * solib-darwin.c, solib-spu.c, solib-svr4.c, solib.c, solist.h, symtab.c, symtab.h: In these files. --- gdb/solib-darwin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gdb/solib-darwin.c') diff --git a/gdb/solib-darwin.c b/gdb/solib-darwin.c index 4a25056..e9bbb77 100644 --- a/gdb/solib-darwin.c +++ b/gdb/solib-darwin.c @@ -570,7 +570,7 @@ darwin_relocate_section_addresses (struct so_list *so, } static struct symbol * -darwin_lookup_lib_symbol (const struct objfile *objfile, +darwin_lookup_lib_symbol (struct objfile *objfile, const char *name, const domain_enum domain) { -- cgit v1.1