tweak for if bool is a reserved word

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@29754 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
rfm 2010-02-25 19:00:23 +00:00
parent 7ff4d4c9c7
commit ef87443e19
2 changed files with 2 additions and 2 deletions

View file

@ -978,7 +978,7 @@ GSIMapCountByEnumeratingWithStateObjectsCount(GSIMapTable map,
* will only work with things that are id-sized, however, so don't * will only work with things that are id-sized, however, so don't
* try using it with non-object collections. * try using it with non-object collections.
*/ */
stackbuf[i] = *(id*)&node->key.bool; stackbuf[i] = *(id*)&node->key.bl;
} }
} }
/* Store the important bits of the enumerator in the caller. */ /* Store the important bits of the enumerator in the caller. */

View file

@ -121,7 +121,7 @@ typedef union {
#if defined(GSUNION_EXTRA) #if defined(GSUNION_EXTRA)
GSUNION_EXTRA ext; GSUNION_EXTRA ext;
#endif #endif
BOOL bool; /* Guaranteed present */ BOOL bl; /* Guaranteed present */
} GSUNION; } GSUNION;
#endif #endif