More ARC fixes. We don't want to be using __strong void* in ARC mode (it only makes sense in GC mode and is invalid in ARC mode).

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@33411 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
David Chisnall 2011-06-29 15:21:02 +00:00
parent faa2c2a63f
commit 276046a76c
4 changed files with 14 additions and 4 deletions

View file

@ -65,7 +65,7 @@ extern "C" {
{
#if GS_EXPOSE(NSNotificationCenter)
@private
__strong void *_table;
GS_GC_STRONG void *_table;
#endif
}