diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2014-12-05 19:11:53 +0100 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2014-12-05 19:11:53 +0100 |
commit | efad9b6a7ad68e3e85dd28a12b567f84d6860d17 (patch) | |
tree | f6dcbee9088c0ad22871ae7df728318ac4f27106 /gdb/solib-svr4.c | |
parent | 069bb7eced120d5a81fc41f339390719a0063ce3 (diff) | |
download | gdb-efad9b6a7ad68e3e85dd28a12b567f84d6860d17.zip gdb-efad9b6a7ad68e3e85dd28a12b567f84d6860d17.tar.gz gdb-efad9b6a7ad68e3e85dd28a12b567f84d6860d17.tar.bz2 |
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 <jan.kratochvil@redhat.com>
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.
Diffstat (limited to 'gdb/solib-svr4.c')
-rw-r--r-- | gdb/solib-svr4.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/solib-svr4.c b/gdb/solib-svr4.c index 5313bf0..953c0d0 100644 --- a/gdb/solib-svr4.c +++ b/gdb/solib-svr4.c @@ -3195,7 +3195,7 @@ struct target_so_ops svr4_so_ops; the main executable. */ static struct symbol * -elf_lookup_lib_symbol (const struct objfile *objfile, +elf_lookup_lib_symbol (struct objfile *objfile, const char *name, const domain_enum domain) { |