Change return types of "grow factor" methods from unsigned to int.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1309 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Andrew McCallum 1996-03-30 22:21:48 +00:00
parent 44a604d900
commit deb6958fe6
2 changed files with 6 additions and 6 deletions

View file

@ -44,13 +44,13 @@
}
+ (unsigned) defaultCapacity;
+ (unsigned) defaultGrowFactor;
+ (int) defaultGrowFactor;
- initWithCapacity: (unsigned) aCapacity;
- (void) setCapacity: (unsigned)newCapacity;
- (unsigned) growFactor;
- (void) setGrowFactor: (unsigned)aNum;
- (int) growFactor;
- (void) setGrowFactor: (int)aNum;
@end

View file

@ -44,13 +44,13 @@
}
+ (unsigned) defaultCapacity;
+ (unsigned) defaultGrowFactor;
+ (int) defaultGrowFactor;
- initWithCapacity: (unsigned) aCapacity;
- (void) setCapacity: (unsigned)newCapacity;
- (unsigned) growFactor;
- (void) setGrowFactor: (unsigned)aNum;
- (int) growFactor;
- (void) setGrowFactor: (int)aNum;
@end