From 078b0f686112c7f44fb09f27f95be9bfcf1f4487 Mon Sep 17 00:00:00 2001 From: mccallum Date: Fri, 26 Jan 1996 16:26:07 +0000 Subject: [PATCH] Remove ivars; class_add_behavior now handles instance_size match. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@840 72102866-910b-0410-8b05-ffd578937521 --- Headers/gnustep/base/NSGArray.h | 22 +--------------------- 1 file changed, 1 insertion(+), 21 deletions(-) diff --git a/Headers/gnustep/base/NSGArray.h b/Headers/gnustep/base/NSGArray.h index 7a78e1391..95883f26e 100644 --- a/Headers/gnustep/base/NSGArray.h +++ b/Headers/gnustep/base/NSGArray.h @@ -1,5 +1,5 @@ /* Interface to concrete implementation of NSArray based on GNU Array - Copyright (C) 1995 Free Software Foundation, Inc. + Copyright (C) 1995, 1996 Free Software Foundation, Inc. Written by: R. Andrew McCallum Date: March 1995 @@ -29,29 +29,9 @@ #include @interface NSGArray : NSArray -{ - /* For now, these must match the instance variables in objects/Array.h. - This will change. */ - int (*_comparison_function)(elt,elt); - elt *_contents_array; - unsigned int _count; - unsigned int _capacity; - unsigned int _grow_factor; -} - @end @interface NSGMutableArray : NSMutableArray -{ - /* For now, these must match the instance variables in objects/Array.h. - This will change. */ - int (*_comparison_function)(elt,elt); - elt *_contents_array; - unsigned int _count; - unsigned int _capacity; - unsigned int _grow_factor; -} - @end #endif /* __NSGArray_h_OBJECTS_INCLUDE */