Changeset 1391 for branches/GNU/src/gcc/libobjc/Object.m
- Timestamp:
- Apr 27, 2004, 8:39:34 PM (21 years ago)
- Location:
- branches/GNU/src/gcc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/gcc
- Property svn:ignore
-
old new 26 26 configure.vr 27 27 configure.vrs 28 dir.info 28 29 Makefile 29 dir.info30 30 lost+found 31 31 update.out
-
- Property svn:ignore
-
branches/GNU/src/gcc/libobjc/Object.m
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.1.1.2
r1390 r1391 1 1 /* The implementation of class Object for Objective-C. 2 Copyright (C) 1993, 1994, 1995, 1997 Free Software Foundation, Inc.2 Copyright (C) 1993, 1994, 1995, 1997, 2002 Free Software Foundation, Inc. 3 3 4 4 This file is part of GNU CC. … … 200 200 + (BOOL) conformsTo: (Protocol*)aProtocol 201 201 { 202 int i;202 size_t i; 203 203 struct objc_protocol_list* proto_list; 204 204 id parent; … … 272 272 - (retval_t)forward:(SEL)aSel :(arglist_t)argFrame 273 273 { 274 (void) argFrame; /* UNUSED */ 274 275 return (retval_t)[self doesNotRecognize: aSel]; 275 276 } … … 365 366 - read: (TypedStream*)aStream 366 367 { 368 (void) aStream; /* UNUSED */ 367 369 // [super read: aStream]; 368 370 return self; … … 371 373 - write: (TypedStream*)aStream 372 374 { 375 (void) aStream; /* UNUSED */ 373 376 // [super write: aStream]; 374 377 return self; -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.