Use correct test macro for __weak.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@33162 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
David Chisnall 2011-05-27 23:36:28 +00:00
parent 68f1581eb9
commit 668081efb2

View file

@ -239,7 +239,7 @@
#include <stdint.h>
#endif
#if __has_feature(objc_gc)
#if __OBJC_GC__
#define __strong __attribute__((objc_gc(strong)))
#define __weak __attribute__((objc_gc(weak)))
#else