diff options
Diffstat (limited to 'gcc/cp/tree.c')
-rw-r--r-- | gcc/cp/tree.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cp/tree.c b/gcc/cp/tree.c index 3424f7a..9a1ad13 100644 --- a/gcc/cp/tree.c +++ b/gcc/cp/tree.c @@ -2054,7 +2054,7 @@ pod_type_p (const_tree t) { /* This CONST_CAST is okay because strip_array_types returns it's argument unmodified and we assign it to a const_tree. */ - t = strip_array_types ((tree)CONST_CAST(t)); + t = strip_array_types (CONST_CAST_TREE(t)); if (t == error_mark_node) return 1; @@ -2093,7 +2093,7 @@ zero_init_p (const_tree t) { /* This CONST_CAST is okay because strip_array_types returns it's argument unmodified and we assign it to a const_tree. */ - t = strip_array_types ((tree)CONST_CAST(t)); + t = strip_array_types (CONST_CAST_TREE(t)); if (t == error_mark_node) return 1; |