diff options
author | Kai Tietz <kai.tietz@onevision.com> | 2008-06-10 12:37:51 +0000 |
---|---|---|
committer | Kai Tietz <ktietz@gcc.gnu.org> | 2008-06-10 14:37:51 +0200 |
commit | c24aadf3fac43ff63e9f309b0ead43881be9548e (patch) | |
tree | 4bffe4a7edbb45a1aac069692d728ff3cb979816 /libobjc/objc | |
parent | 33ee5810003d5d7d6fb61b0af706cfac21d4ba6c (diff) | |
download | gcc-c24aadf3fac43ff63e9f309b0ead43881be9548e.zip gcc-c24aadf3fac43ff63e9f309b0ead43881be9548e.tar.gz gcc-c24aadf3fac43ff63e9f309b0ead43881be9548e.tar.bz2 |
Object.m (compare): Add type id.
2008-06-10 Kai Tietz <kai.tietz@onevision.com>
* Object.m (compare): Add type id.
* objc/Object.h: Likewise.
* archive.c (objc_read_class): Use size_t to extend version to be
size of pointer scalar width.
* sendmsg.c (rtx): Undefine it before redefinition.
(__objc_print_dtable_stats): Cast arguments to long as intended.
From-SVN: r136617
Diffstat (limited to 'libobjc/objc')
-rw-r--r-- | libobjc/objc/Object.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libobjc/objc/Object.h b/libobjc/objc/Object.h index 7b67f466..04d953d 100644 --- a/libobjc/objc/Object.h +++ b/libobjc/objc/Object.h @@ -66,7 +66,7 @@ extern "C" { - self; - (unsigned int)hash; - (BOOL)isEqual:anObject; -- (int)compare:anotherObject; +- (int)compare:(id)anotherObject; /* Testing object type */ - (BOOL)isMetaClass; |