Expand RETAIN()/RELEASE() macros calling super (work around for clang PR6811).

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@30118 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
David Chisnall 2010-04-10 17:48:49 +00:00
parent 63638ee055
commit 818b672ad5

View file

@ -1490,12 +1490,12 @@ static NSMapTable *mimeMap = NULL;
if ([self retainCount] == 2)
{
[dictionary_lock lock];
RETAIN(super);
[super retain];
[pasteboards removeObjectForKey: name];
RELEASE(super);
[super release];
[dictionary_lock unlock];
}
RELEASE(super);
[super release];
}
/**