unsigned is partially implemented...

This commit is contained in:
Bill Currie 2003-08-01 17:38:52 +00:00
parent f04d67f319
commit fd15377532
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@
@interface AutoreleasePool: Object
{
/*unsigned*/integer count;
unsigned count;
id [] array;
}

View File

@ -87,7 +87,7 @@ typedef enum {
- (id) retain;
- (id) autorelease;
- (/*oneway*/ void) release;
- (/*unsigned*/integer) retainCount;
- (unsigned) retainCount;
@end
@protocol Copying