mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 16:30:41 +00:00
Add required cast in case nil is not defined as id
This commit is contained in:
parent
b55ee6b0c5
commit
0af2c6de72
2 changed files with 2 additions and 2 deletions
|
@ -853,7 +853,7 @@ static NSMapTable *globalClassMap = 0;
|
|||
// Add markers for unencoded objects.
|
||||
for (i = 1; i < count; i++)
|
||||
{
|
||||
GSIArrayAddItem(_objMap, (GSIArrayItem)nil);
|
||||
GSIArrayAddItem(_objMap, (GSIArrayItem)(id)nil);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue