mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 16:30:41 +00:00
Don't include GS_GENERIC macros
This commit is contained in:
parent
6ad8953196
commit
a442d730ce
1 changed files with 6 additions and 2 deletions
|
@ -2782,7 +2782,7 @@ try:
|
||||||
{
|
{
|
||||||
pos++;
|
pos++;
|
||||||
}
|
}
|
||||||
// NSLog(@"Parsed generic type as '%@'", tmp);
|
//NSLog(@"Parsed generic type as '%@'", tmp);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -3959,7 +3959,11 @@ countAttributes(NSSet *keys, NSDictionary *a)
|
||||||
|
|
||||||
if (ptr > start)
|
if (ptr > start)
|
||||||
{
|
{
|
||||||
return [NSString stringWithCharacters: start length: ptr - start];
|
NSString *tmp;
|
||||||
|
|
||||||
|
tmp = [NSString stringWithCharacters: start length: ptr - start];
|
||||||
|
tmp = concreteType(tmp);
|
||||||
|
return tmp;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue