mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
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:
parent
14b91c9052
commit
a000beebcb
2 changed files with 2 additions and 2 deletions
|
@ -978,7 +978,7 @@ GSIMapCountByEnumeratingWithStateObjectsCount(GSIMapTable map,
|
|||
* will only work with things that are id-sized, however, so don't
|
||||
* 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. */
|
||||
|
|
|
@ -121,7 +121,7 @@ typedef union {
|
|||
#if defined(GSUNION_EXTRA)
|
||||
GSUNION_EXTRA ext;
|
||||
#endif
|
||||
BOOL bool; /* Guaranteed present */
|
||||
BOOL bl; /* Guaranteed present */
|
||||
} GSUNION;
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue