mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +00:00
Tell compiler we don't care about rreturn value
This commit is contained in:
parent
1937b36b86
commit
ccd2fb1ac0
1 changed files with 2 additions and 2 deletions
|
@ -2211,8 +2211,8 @@ GSICUStringMatchesRegex(NSString *string, NSString *regex, NSStringCompareOption
|
|||
static NSCharacterSet *_identifier;
|
||||
NSString *ident;
|
||||
|
||||
// skip # as prefix (reserved words)
|
||||
[self scanString: @"#" intoString: NULL];
|
||||
// skip # as prefix if present (reserved words)
|
||||
(void)[self scanString: @"#" intoString: NULL];
|
||||
if (!_identifier)
|
||||
{
|
||||
ASSIGN(_identifier, [NSCharacterSet characterSetWithCharactersInString:
|
||||
|
|
Loading…
Reference in a new issue