2004-06-02 Albert Chin-A-Young <china@thewrittenword.com>

Committed by Andrew Cagney.
	* gdb/dictionary.c, gdb/gdbtypes.h: Remove trailing comma
	after last enum constant to avoid error from IBM C
	compiler.
This commit is contained in:
Andrew Cagney 2004-06-02 21:01:55 +00:00
parent 1da28ab05f
commit 2060536186
3 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,10 @@
2004-06-02 Albert Chin-A-Young <china@thewrittenword.com>
Committed by Andrew Cagney.
* gdb/dictionary.c, gdb/gdbtypes.h: Remove trailing comma
after last enum constant to avoid error from IBM C
compiler.
2004-06-02 Jim Blandy <jimb@redhat.com>
* ppc-linux-nat.c (store_register, fetch_register): Rename 'mess'

View File

@ -99,7 +99,7 @@ enum dict_type
/* Symbols are stored in a fixed-size array. */
DICT_LINEAR,
/* Symbols are stored in an expandable array. */
DICT_LINEAR_EXPANDABLE,
DICT_LINEAR_EXPANDABLE
};
/* The virtual function table. */

View File

@ -136,7 +136,7 @@ enum type_code
TYPE_CODE_TEMPLATE, /* C++ template */
TYPE_CODE_TEMPLATE_ARG, /* C++ template arg */
TYPE_CODE_NAMESPACE, /* C++ namespace. */
TYPE_CODE_NAMESPACE /* C++ namespace. */
};
/* For now allow source to use TYPE_CODE_CLASS for C++ classes, as an