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.
This commit is contained in:
Jan Kratochvil
2014-12-05 19:11:53 +01:00
parent 069bb7eced
commit efad9b6a7a
8 changed files with 17 additions and 12 deletions

View File

@@ -1404,7 +1404,7 @@ show_auto_solib_add (struct ui_file *file, int from_tty,
the library-specific handler if it is installed for the current target. */
struct symbol *
solib_global_lookup (const struct objfile *objfile,
solib_global_lookup (struct objfile *objfile,
const char *name,
const domain_enum domain)
{