From 58e3acf8040c48762654e4d4a80920b1f3eb41ad Mon Sep 17 00:00:00 2001 From: rfm Date: Thu, 17 Mar 2011 12:53:48 +0000 Subject: [PATCH] trivial tidyups git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@32630 72102866-910b-0410-8b05-ffd578937521 --- Source/NSPortCoder.m | 4 ++-- Source/NSSerializer.m | 4 ++-- Source/NSUnarchiver.m | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Source/NSPortCoder.m b/Source/NSPortCoder.m index 22c0a43f5..946fd030b 100644 --- a/Source/NSPortCoder.m +++ b/Source/NSPortCoder.m @@ -71,8 +71,8 @@ static GC_descr nodeDesc; // Type descriptor for map node. /* * Setup for inline operation of arrays. */ -#define GSI_ARRAY_RETAIN(A, X) -#define GSI_ARRAY_RELEASE(A, X) +#define GSI_ARRAY_NO_RETAIN 1 +#define GSI_ARRAY_NO_RELEASE 1 #define GSI_ARRAY_TYPES GSUNION_OBJ|GSUNION_SEL|GSUNION_PTR #include "GNUstepBase/GSIArray.h" diff --git a/Source/NSSerializer.m b/Source/NSSerializer.m index 6feaac1e9..18e807772 100644 --- a/Source/NSSerializer.m +++ b/Source/NSSerializer.m @@ -73,8 +73,8 @@ /* * Setup for inline operation of string arrays. */ -#define GSI_ARRAY_RETAIN(A, X) -#define GSI_ARRAY_RELEASE(A, X) +#define GSI_ARRAY_NO_RETAIN 1 +#define GSI_ARRAY_NO_RELEASE 1 #define GSI_ARRAY_TYPES GSUNION_OBJ #include "GNUstepBase/GSIArray.h" diff --git a/Source/NSUnarchiver.m b/Source/NSUnarchiver.m index bcba07d22..2cfafc92c 100644 --- a/Source/NSUnarchiver.m +++ b/Source/NSUnarchiver.m @@ -35,8 +35,8 @@ /* * Setup for inline operation of arrays. */ -#define GSI_ARRAY_RETAIN(A, X) -#define GSI_ARRAY_RELEASE(A, X) +#define GSI_ARRAY_NO_RETAIN 1 +#define GSI_ARRAY_NO_RELEASE 1 #define GSI_ARRAY_TYPES GSUNION_OBJ|GSUNION_SEL|GSUNION_PTR #include "GNUstepBase/GSIArray.h"