diff options
author | Doug Evans <xdje42@gmail.com> | 2014-11-06 17:19:06 -0800 |
---|---|---|
committer | Doug Evans <xdje42@gmail.com> | 2014-11-06 17:19:06 -0800 |
commit | 4753d33b404f07e749f648c57ae61e3984d40029 (patch) | |
tree | 1d0999b959a4f9fc5dbb2f816de59b82dfe0edc6 /gdb/valops.c | |
parent | 9c1877ead06db18e19614a598d1e280acb97e971 (diff) | |
download | gdb-4753d33b404f07e749f648c57ae61e3984d40029.zip gdb-4753d33b404f07e749f648c57ae61e3984d40029.tar.gz gdb-4753d33b404f07e749f648c57ae61e3984d40029.tar.bz2 |
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.
Diffstat (limited to 'gdb/valops.c')
-rw-r--r-- | gdb/valops.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/valops.c b/gdb/valops.c index c09e4fd..4b84eba 100644 --- a/gdb/valops.c +++ b/gdb/valops.c @@ -735,7 +735,7 @@ value_dynamic_cast (struct type *type, struct value *arg) && TYPE_CODE (resolved_type) != TYPE_CODE_REF) error (_("Argument to dynamic_cast must be a pointer or reference type")); if (TYPE_CODE (TYPE_TARGET_TYPE (resolved_type)) != TYPE_CODE_VOID - && TYPE_CODE (TYPE_TARGET_TYPE (resolved_type)) != TYPE_CODE_CLASS) + && TYPE_CODE (TYPE_TARGET_TYPE (resolved_type)) != TYPE_CODE_STRUCT) error (_("Argument to dynamic_cast must be pointer to class or `void *'")); class_type = check_typedef (TYPE_TARGET_TYPE (resolved_type)); @@ -748,7 +748,7 @@ value_dynamic_cast (struct type *type, struct value *arg) if (TYPE_CODE (arg_type) == TYPE_CODE_PTR) { arg_type = check_typedef (TYPE_TARGET_TYPE (arg_type)); - if (TYPE_CODE (arg_type) != TYPE_CODE_CLASS) + if (TYPE_CODE (arg_type) != TYPE_CODE_STRUCT) error (_("Argument to dynamic_cast does " "not have pointer to class type")); } @@ -761,7 +761,7 @@ value_dynamic_cast (struct type *type, struct value *arg) } else { - if (TYPE_CODE (arg_type) != TYPE_CODE_CLASS) + if (TYPE_CODE (arg_type) != TYPE_CODE_STRUCT) error (_("Argument to dynamic_cast does not have class type")); } |