avoid a couple of compiler warnings

This commit is contained in:
rfm 2024-11-19 12:57:59 +00:00
parent 04902baa89
commit ebedfaf5c1
2 changed files with 4 additions and 0 deletions

View file

@ -31,6 +31,7 @@
#import "Foundation/NSCoder.h"
#import "Foundation/NSData.h"
#import "Foundation/NSInvocation.h"
#import "Foundation/NSPointerArray.h"
#import "Foundation/NSZone.h"
#import "GSInvocation.h"
#import "GSPrivate.h"

View file

@ -104,6 +104,7 @@
- (NSMutableArray*) parseProtocolList;
- (unsigned) parseSpace: (NSCharacterSet*)spaceSet;
- (unsigned) parseSpace;
- (unsigned) parseSpaceOrGeneric;
- (NSString*) parseVersion;
- (void) reset;
- (void) setDebug: (BOOL)aFlag;
@ -115,9 +116,11 @@
- (void) setWordMap: (NSDictionary*)map;
- (void) setupBuffer;
- (unsigned) skipArray;
- (unsigned) skipAttribute: (NSString*)s;
- (unsigned) skipBlock;
- (unsigned) skipBlock: (BOOL*)isEmpty;
- (unsigned) skipGeneric;
- (unsigned) skipIfAttribute;
- (unsigned) skipLiteral;
- (unsigned) skipRemainderOfLine;
- (unsigned) skipSpaces;