diff options
-rw-r--r-- | gcc/cp/ChangeLog | 2 | ||||
-rw-r--r-- | gcc/cp/cp-tree.h | 4 |
2 files changed, 2 insertions, 4 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 4f5b617..19ac5ed 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -2,6 +2,8 @@ * cp-tree.h (cxx_alignof): Remove. + * cp-tree.h (DECL_ARRAY_DELETE_OPERATOR_P): Remove. + 2005-04-08 Ian Lance Taylor <ian@airs.com> * cp-tree.def: Define FOR_STMT, WHILE_STMT, DO_STMT, BREAK_STMT, diff --git a/gcc/cp/cp-tree.h b/gcc/cp/cp-tree.h index e989e5f..b2c8e82 100644 --- a/gcc/cp/cp-tree.h +++ b/gcc/cp/cp-tree.h @@ -1795,10 +1795,6 @@ struct lang_decl GTY(()) #define DECL_HAS_IN_CHARGE_PARM_P(NODE) \ (DECL_LANG_SPECIFIC (NODE)->decl_flags.has_in_charge_parm_p) -/* Nonzero if NODE is an overloaded `operator delete[]' function. */ -#define DECL_ARRAY_DELETE_OPERATOR_P(NODE) \ - (DECL_OVERLOADED_OPERATOR_P (NODE) == VEC_DELETE_EXPR) - /* Nonzero for _DECL means that this decl appears in (or will appear in) as a member in a RECORD_TYPE or UNION_TYPE node. It is also for detecting circularity in case members are multiply defined. In the |