Commit 829297e6 by Jason Merrill Committed by Jason Merrill

* cp-tree.h (IS_AGGR_TYPE_2): Fix typo.

From-SVN: r28985
parent 8d1e67c6
1999-08-30 Jason Merrill <jason@yorick.cygnus.com>
* cp-tree.h (IS_AGGR_TYPE_2): Fix typo.
1999-08-30 Mark Mitchell <mark@codesourcery.com>
* cp-tree.h (begin_init_stmts): Declare.
......
......@@ -674,7 +674,7 @@ enum languages { lang_c, lang_cplusplus, lang_java };
#define IS_AGGR_TYPE_CODE(t) (t == RECORD_TYPE || t == UNION_TYPE)
#define IS_AGGR_TYPE_2(TYPE1,TYPE2) \
(TREE_CODE (TYPE1) == TREE_CODE (TYPE2) \
&& IS_AGGR_TYPE (TYPE1)&IS_AGGR_TYPE (TYPE2))
&& IS_AGGR_TYPE (TYPE1) && IS_AGGR_TYPE (TYPE2))
#define IS_OVERLOAD_TYPE(t) \
(IS_AGGR_TYPE (t) || TREE_CODE (t) == ENUMERAL_TYPE)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment