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: r50474
This commit is contained in:
Craig Rodrigues 2002-03-09 02:24:29 +00:00
parent cd1f688539
commit 2787f9eaee
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-02 Nathan Sidwell <nathan@codesourcery.com>
PR c++/775

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) \