mirror of
https://github.com/gnustep/libs-gscoredata.git
synced 2025-02-11 08:30:44 +00:00
* CoreDataHeaders.h: Conditionally use the defines for _, ASSIGN, and
RETAIN when the framework is not being compiled using GNUstep and GNUSTEP is not defined. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep@33286 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
c6eb6061ae
commit
a348369fbb
2 changed files with 8 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
|||
2011-06-12 09:42-EDT Gregory John Casamento <greg.casamento@gmail.com>
|
||||
|
||||
* CoreDataHeaders.h: Conditionally use the defines for _, ASSIGN, and
|
||||
RETAIN when the framework is not being compiled using GNUstep and
|
||||
GNUSTEP is not defined.
|
||||
|
||||
2010-12-27 Nicola Pero <nicola.pero@meta-innovation.com>
|
||||
|
||||
* NSAttributeDescription.m ([-initWithCoder:],
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#ifndef GNUSTEP /* if and only if we are not compiling under GNUstep, should these be defined */
|
||||
#ifndef ASSIGN
|
||||
#define ASSIGN(VAR, VAL) [(VAR) autorelease], (VAR)=[(VAL) retain]
|
||||
#endif
|
||||
|
@ -34,6 +35,7 @@
|
|||
#ifndef _
|
||||
#define _(STR) STR
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#import <CoreData/CoreData.h>
|
||||
#import "CoreDataUtilities.h"
|
||||
|
|
Loading…
Reference in a new issue