mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 00:11:26 +00:00
changes intended to allow use of _Bool throughout
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@39010 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
1d6a599be7
commit
0c5d96eebd
17 changed files with 291 additions and 40 deletions
|
@ -61,6 +61,9 @@ typeSize(const char* type)
|
|||
case _C_ULNG_LNG: return sizeof(unsigned long long);
|
||||
case _C_FLT: return sizeof(float);
|
||||
case _C_DBL: return sizeof(double);
|
||||
#if __GNUC__ != 2
|
||||
case _C_BOOL: return sizeof(_Bool);
|
||||
#endif
|
||||
case _C_PTR: return sizeof(void*);
|
||||
case _C_CHARPTR: return sizeof(char*);
|
||||
case _C_BFLD:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue