diff options
author | Tom Tromey <tom@tromey.com> | 2019-01-21 13:45:00 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2019-01-22 20:35:20 -0700 |
commit | 6b4d77743349028e471334da3d63df09cddfd820 (patch) | |
tree | ef42d0d1dcc225e340104b337c9e5514badc23c6 /gdb | |
parent | 7af7e9b5d8f9dd8f994d59923158d24d77a54bbe (diff) | |
download | gdb-6b4d77743349028e471334da3d63df09cddfd820.zip gdb-6b4d77743349028e471334da3d63df09cddfd820.tar.gz gdb-6b4d77743349028e471334da3d63df09cddfd820.tar.bz2 |
Use "struct bcache" in objfiles.h
If objfiles.h is included after bcache.h, then the "bcache" function
will cause a compiler error because "bcache" will be seen as a
function, not a type. Fix this error by using the "struct" keyword.
gdb/ChangeLog
2019-01-22 Tom Tromey <tom@tromey.com>
* objfiles.h (struct objfile_per_bfd_storage): Use "struct"
keyword for bcache.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/objfiles.h | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 9c1ea0b..02cca05 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,10 @@ 2019-01-22 Tom Tromey <tom@tromey.com> + * objfiles.h (struct objfile_per_bfd_storage): Use "struct" + keyword for bcache. + +2019-01-22 Tom Tromey <tom@tromey.com> + * compile/compile-cplus-types.c: Remove a comment by #include. 2019-01-22 Tom Tromey <tom@tromey.com> diff --git a/gdb/objfiles.h b/gdb/objfiles.h index 5f106d9..a10781f 100644 --- a/gdb/objfiles.h +++ b/gdb/objfiles.h @@ -240,11 +240,11 @@ struct objfile_per_bfd_storage /* Byte cache for file names. */ - bcache *filename_cache = NULL; + struct bcache *filename_cache = NULL; /* Byte cache for macros. */ - bcache *macro_cache = NULL; + struct bcache *macro_cache = NULL; /* The gdbarch associated with the BFD. Note that this gdbarch is determined solely from BFD information, without looking at target |