mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 09:51:08 +00:00
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:
parent
63638ee055
commit
818b672ad5
1 changed files with 3 additions and 3 deletions
|
@ -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];
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue