Delete TYPE_CODE_CLASS, it's just an alias of TYPE_CODE_STRUCT.
gdb/ChangeLog: * gdbtypes.h (TYPE_CODE_CLASS): Delete. All uses changed to use TYPE_CODE_STRUCT.
This commit is contained in:
parent
9c1877ead0
commit
4753d33b40
19 changed files with 27 additions and 40 deletions
|
@ -1297,7 +1297,7 @@ make_symbol_overload_list_adl_namespace (struct type *type,
|
|||
}
|
||||
|
||||
/* Check public base type */
|
||||
if (TYPE_CODE (type) == TYPE_CODE_CLASS)
|
||||
if (TYPE_CODE (type) == TYPE_CODE_STRUCT)
|
||||
for (i = 0; i < TYPE_N_BASECLASSES (type); i++)
|
||||
{
|
||||
if (BASETYPE_VIA_PUBLIC (type, i))
|
||||
|
@ -1463,7 +1463,7 @@ cp_lookup_rtti_type (const char *name, struct block *block)
|
|||
|
||||
switch (TYPE_CODE (rtti_type))
|
||||
{
|
||||
case TYPE_CODE_CLASS:
|
||||
case TYPE_CODE_STRUCT:
|
||||
break;
|
||||
case TYPE_CODE_NAMESPACE:
|
||||
/* chastain/2003-11-26: the symbol tables often contain fake
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue