mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 08:21:25 +00:00
Fix return pointer type
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@27662 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
b502a17d9a
commit
171ce33276
3 changed files with 10 additions and 5 deletions
|
@ -105,7 +105,7 @@ typedef NSUInteger NSPointerFunctionsOptions;
|
|||
- (void* (*)(const void *item,
|
||||
NSUInteger (*size)(const void *item), BOOL shouldCopy)) acquireFunction;
|
||||
|
||||
- (NSString (*)(const void *item)) descriptionFunction;
|
||||
- (NSString *(*)(const void *item)) descriptionFunction;
|
||||
|
||||
- (NSUInteger (*)(const void *item,
|
||||
NSUInteger (*size)(const void *item))) hashFunction;
|
||||
|
@ -119,7 +119,7 @@ typedef NSUInteger NSPointerFunctionsOptions;
|
|||
- (void) setAcquireFunction: (void* (*)(const void *item,
|
||||
NSUInteger (*size)(const void *item), BOOL shouldCopy))func;
|
||||
|
||||
- (void) setDescriptionFunction: (NSString (*)(const void *item))func;
|
||||
- (void) setDescriptionFunction: (NSString *(*)(const void *item))func;
|
||||
|
||||
- (void) setHashFunction: (NSUInteger (*)(const void *item,
|
||||
NSUInteger (*size)(const void *item)))func;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue