inon-fragile ivar update

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@29780 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2010-02-26 11:04:14 +00:00
parent e43d625338
commit 6b3e53917e
5 changed files with 52 additions and 38 deletions

View file

@ -49,7 +49,13 @@ typedef NSInteger NSOperationQueuePriority;
@interface NSOperation : NSObject
{
GS_INTERNAL(NSOperation)
#if GS_NONFRAGILE
# if defined(GS_NSOperation_IVARS)
@public GS_NSOperation_IVARS
# endif
#else
@private id _internal;
#endif
}
/** Adds a dependency to the receiver.<br />
@ -187,9 +193,12 @@ enum {
@interface NSOperationQueue : NSObject
{
#if GS_EXPOSE(NSOperationQueue)
@private
id _internal;
#if GS_NONFRAGILE
# if defined(GS_NSOperationQueue_IVARS)
@public GS_NSOperationQueue_IVARS
# endif
#else
@private id _internal;
#endif
}
#if OS_API_VERSION(100600, GS_API_LATEST)