mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-29 16:01:38 +00:00
avoid some compiler warnings
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@31107 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
916036fa6d
commit
50662ad093
8 changed files with 36 additions and 15 deletions
|
@ -625,8 +625,10 @@ SANITY();
|
|||
- (void) setAttributes: (NSDictionary*)attributes
|
||||
range: (NSRange)range
|
||||
{
|
||||
unsigned tmpLength, arrayIndex, arraySize;
|
||||
NSRange effectiveRange;
|
||||
unsigned tmpLength;
|
||||
unsigned arrayIndex = 0;
|
||||
unsigned arraySize;
|
||||
NSRange effectiveRange = NSMakeRange(0, NSNotFound);
|
||||
unsigned afterRangeLoc, beginRangeLoc;
|
||||
NSDictionary *attrs;
|
||||
NSZone *z = [self zone];
|
||||
|
@ -751,8 +753,10 @@ SANITY();
|
|||
- (void) replaceCharactersInRange: (NSRange)range
|
||||
withString: (NSString*)aString
|
||||
{
|
||||
unsigned tmpLength, arrayIndex, arraySize;
|
||||
NSRange effectiveRange;
|
||||
unsigned tmpLength;
|
||||
unsigned arrayIndex = 0;
|
||||
unsigned arraySize;
|
||||
NSRange effectiveRange = NSMakeRange(0, NSNotFound);
|
||||
NSDictionary *attrs;
|
||||
GSAttrInfo *info;
|
||||
int moveLocations;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue