cp-tree.h (CLEAR_BINFO_MARKED): Make both parts of conditional return void.

2002-03-08  Craig Rodrigues  <rodrigc@gcc.gnu.org>

        * cp-tree.h (CLEAR_BINFO_MARKED): Make both parts of
        conditional return void.

From-SVN: r50473
This commit is contained in:
Craig Rodrigues 2002-03-09 02:22:43 +00:00
parent 1fa4bed7b5
commit 7e326356d8
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2002-03-08 Craig Rodrigues <rodrigc@gcc.gnu.org>
* cp-tree.h (CLEAR_BINFO_MARKED): Make both parts of
conditional return void.
2002-03-08 Neil Booth <neil@daikokuya.demon.co.uk>
* cp-lang.c (LANG_HOOKS_UNSAVE): Redefine.

View File

@ -1594,7 +1594,7 @@ struct lang_type
#define CLEAR_BINFO_MARKED(NODE) \
(TREE_VIA_VIRTUAL (NODE) \
? CLEAR_CLASSTYPE_MARKED (BINFO_TYPE (NODE)) \
: (TREE_LANG_FLAG_0 (NODE) = 0))
: (void)(TREE_LANG_FLAG_0 (NODE) = 0))
/* Nonzero means that this class is on a path leading to a new vtable. */
#define BINFO_VTABLE_PATH_MARKED(NODE) \