Don't include GS_GENERIC macros

This commit is contained in:
rfm 2023-12-21 20:21:26 +00:00
parent 6ad8953196
commit a442d730ce

View file

@ -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
{ {