Ignore:
Timestamp:
Apr 27, 2004, 8:39:34 PM (21 years ago)
Author:
bird
Message:

GCC v3.3.3 sources.

Location:
branches/GNU/src/gcc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/GNU/src/gcc

    • Property svn:ignore
      •  

        old new  
        2626configure.vr
        2727configure.vrs
         28dir.info
        2829Makefile
        29 dir.info
        3030lost+found
        3131update.out
  • branches/GNU/src/gcc/libobjc/Object.m

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.1.1.2
    r1390 r1391  
    11/* 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.
    33
    44This file is part of GNU CC.
     
    200200+ (BOOL) conformsTo: (Protocol*)aProtocol
    201201{
    202   int i;
     202  size_t i;
    203203  struct objc_protocol_list* proto_list;
    204204  id parent;
     
    272272- (retval_t)forward:(SEL)aSel :(arglist_t)argFrame
    273273{
     274  (void) argFrame; /* UNUSED */
    274275  return (retval_t)[self doesNotRecognize: aSel];
    275276}
     
    365366- read: (TypedStream*)aStream
    366367{
     368  (void) aStream; /* UNUSED */
    367369  // [super read: aStream]; 
    368370  return self;
     
    371373- write: (TypedStream*)aStream
    372374{
     375  (void) aStream; /* UNUSED */
    373376  // [super write: aStream];
    374377  return self;
Note: See TracChangeset for help on using the changeset viewer.