mirror of
https://github.com/gnustep/libs-gdl2.git
synced 2025-04-23 13:10:48 +00:00
* EOControl/EODebug.m (TypeToNSString): Use #ifdef to test for
_C_LNG_LNG handling. * EOControl/EOFault.m: Include limits.h for UINT_MAX. * EOControl/EOGenericRecord.m: Ditto. * EOControl/EONSAddOns.m: Ditto. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gdl2/trunk@20169 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
3104ab6521
commit
79fee856cd
5 changed files with 15 additions and 2 deletions
|
@ -9,6 +9,12 @@
|
|||
([EOObserverCenter observerForObject:ofClass:]): Revert to using
|
||||
internal map. Avoid allocating spurious enumerator. Update
|
||||
documentation.
|
||||
|
||||
* EOControl/EODebug.m (TypeToNSString): Use #ifdef to test for
|
||||
_C_LNG_LNG handling.
|
||||
* EOControl/EOFault.m: Include limits.h for UINT_MAX.
|
||||
* EOControl/EOGenericRecord.m: Ditto.
|
||||
* EOControl/EONSAddOns.m: Ditto.
|
||||
|
||||
2004-09-26 David Ayers <d.ayers@inode.at>
|
||||
|
||||
|
|
|
@ -278,8 +278,10 @@ TypeToNSString(const char* _type)
|
|||
case _C_UINT: return @"unsigned int";
|
||||
case _C_LNG: return @"long";
|
||||
case _C_ULNG: return @"unsigned long";
|
||||
// case _C_LNG_LNG: return @"long long";
|
||||
// case _C_ULNG_LNG: return @"unsigned long long";
|
||||
#ifdef _C_LNG_LNG
|
||||
case _C_LNG_LNG: return @"long long";
|
||||
case _C_ULNG_LNG: return @"unsigned long long";
|
||||
#endif
|
||||
case _C_FLT: return @"float";
|
||||
case _C_DBL: return @"double";
|
||||
case _C_VOID: return @"void";
|
||||
|
|
|
@ -67,6 +67,8 @@ RCS_ID("$Id$")
|
|||
#include <EOControl/EOEditingContext.h>
|
||||
#include <EOControl/EODebug.h>
|
||||
|
||||
#include <limits.h>
|
||||
|
||||
/*
|
||||
* EOFault class
|
||||
*/
|
||||
|
|
|
@ -71,6 +71,7 @@ RCS_ID("$Id$")
|
|||
#include <objc/objc-class.h>
|
||||
#endif
|
||||
|
||||
#include <limits.h>
|
||||
|
||||
@interface NSObject (EOCalculateSize)
|
||||
- (unsigned int)eoGetSize;
|
||||
|
|
|
@ -60,6 +60,8 @@ RCS_ID("$Id$")
|
|||
#include <EOControl/EONSAddOns.h>
|
||||
#include <EOControl/EODebug.h>
|
||||
|
||||
#include <limits.h>
|
||||
|
||||
static NSRecursiveLock *local_lock = nil;
|
||||
static BOOL GSStrictWO451Flag = NO;
|
||||
|
||||
|
|
Loading…
Reference in a new issue