mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-30 03:50:46 +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
7ff4d4c9c7
commit
ef87443e19
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
|
* 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. */
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue