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 */