mirror of
https://github.com/gnustep/libs-base.git
synced 2025-06-02 17:41:05 +00:00
Fix NSNotFound definition to use NSInteger type #494
This commit is contained in:
parent
936e155beb
commit
99c59b9d70
1 changed files with 1 additions and 1 deletions
|
@ -292,7 +292,7 @@ typedef NS_ENUM(NSInteger, NSComparisonResult)
|
||||||
NSOrderedAscending = (NSInteger)-1, NSOrderedSame, NSOrderedDescending
|
NSOrderedAscending = (NSInteger)-1, NSOrderedSame, NSOrderedDescending
|
||||||
};
|
};
|
||||||
|
|
||||||
enum {NSNotFound = NSIntegerMax};
|
static const NSInteger NSNotFound = NSIntegerMax;
|
||||||
|
|
||||||
DEFINE_BLOCK_TYPE(NSComparator, NSComparisonResult, id, id);
|
DEFINE_BLOCK_TYPE(NSComparator, NSComparisonResult, id, id);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue