]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
re PR objc/6107 (sparc-sun-solaris2.7 gcc-3.1 extra objc testsuite failures w/-m64)
authorHans-Peter Nilsson <hp@bitrange.com>
Tue, 9 Apr 2002 07:06:18 +0000 (07:06 +0000)
committerHans-Peter Nilsson <hp@gcc.gnu.org>
Tue, 9 Apr 2002 07:06:18 +0000 (07:06 +0000)
PR objc/6107
* objc/objc-api.h (struct objc_protocol_list): Change type of
member count from int to size_t.

From-SVN: r52058

libobjc/ChangeLog
libobjc/objc/objc-api.h

index 6f4d400134bdc8c7c592499b558c6f33ad890408..b17ab79628d06905095bbe247ac840b68d0bfd3e 100644 (file)
@@ -1,3 +1,9 @@
+2002-04-08  Hans-Peter Nilsson  <hp@bitrange.com>
+
+       PR objc/6107
+       * objc/objc-api.h (struct objc_protocol_list): Change type of
+       member count from int to size_t.
+
 2002-02-11  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
 
        PR libobjc/4039
index a0b404dc9aeb152b6166166b6ea05856ec2c2876..92680209eab72d83f565e759da1eb5d4cbc81455 100644 (file)
@@ -1,5 +1,5 @@
 /* GNU Objective-C Runtime API.
-   Copyright (C) 1993, 1995, 1996, 1997 Free Software Foundation, Inc.
+   Copyright (C) 1993, 1995, 1996, 1997, 2002 Free Software Foundation, Inc.
 
 This file is part of GNU CC.
 
@@ -261,7 +261,7 @@ typedef struct objc_method_list {
 
 struct objc_protocol_list {
   struct objc_protocol_list *next;
-  int count;
+  size_t count;
   Protocol *list[1];
 };