Tidy positioning of semicolon to be inside IF_NO_ARC() macros so it won't appear in the source when compiled with ARC

This commit is contained in:
Richard Frith-Macdonald 2022-02-17 10:21:36 +00:00
parent c76ebf2962
commit 0b1a2d4d66
18 changed files with 45 additions and 45 deletions

View file

@ -198,7 +198,7 @@ static SEL objSel;
node = GSIMapNodeForKey(&map, (GSIMapKey)(id)keys[i]);
if (node)
{
IF_NO_ARC(RETAIN(objs[i]));
IF_NO_ARC(RETAIN(objs[i]);)
RELEASE(node->value.obj);
node->value.obj = objs[i];
}
@ -428,7 +428,7 @@ static SEL objSel;
node = GSIMapNodeForKey(&map, (GSIMapKey)aKey);
if (node)
{
IF_NO_ARC(RETAIN(anObject));
IF_NO_ARC(RETAIN(anObject);)
RELEASE(node->value.obj);
node->value.obj = anObject;
}