mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 00:11:26 +00:00
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:
parent
c76ebf2962
commit
0b1a2d4d66
18 changed files with 45 additions and 45 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue