mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
fixup sizing
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@38811 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
bac8e3a0f6
commit
8659e297d3
3 changed files with 3 additions and 3 deletions
|
@ -407,8 +407,8 @@ static GC_descr nodeDesc; // Type descriptor for map node.
|
|||
size += GSIMapSize(&map) - sizeof(map);
|
||||
while (node != 0)
|
||||
{
|
||||
node = GSIMapEnumeratorNextNode(&enumerator);
|
||||
size += [node->key.obj sizeInBytesExcluding: exclude];
|
||||
node = GSIMapEnumeratorNextNode(&enumerator);
|
||||
}
|
||||
GSIMapEndEnumerator(&enumerator);
|
||||
}
|
||||
|
|
|
@ -379,9 +379,9 @@ static SEL objSel;
|
|||
size += GSIMapSize(&map) - sizeof(map);
|
||||
while (node != 0)
|
||||
{
|
||||
node = GSIMapEnumeratorNextNode(&enumerator);
|
||||
size += [node->key.obj sizeInBytesExcluding: exclude];
|
||||
size += [node->value.obj sizeInBytesExcluding: exclude];
|
||||
node = GSIMapEnumeratorNextNode(&enumerator);
|
||||
}
|
||||
GSIMapEndEnumerator(&enumerator);
|
||||
}
|
||||
|
|
|
@ -550,8 +550,8 @@ static Class mutableSetClass;
|
|||
size += GSIMapSize(&map) - sizeof(map);
|
||||
while (node != 0)
|
||||
{
|
||||
node = GSIMapEnumeratorNextNode(&enumerator);
|
||||
size += [node->key.obj sizeInBytesExcluding: exclude];
|
||||
node = GSIMapEnumeratorNextNode(&enumerator);
|
||||
}
|
||||
GSIMapEndEnumerator(&enumerator);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue