diff options
author | Nicola Pero <nicola.pero@meta-innovation.com> | 2010-12-15 19:47:18 +0000 |
---|---|---|
committer | Nicola Pero <nicola@gcc.gnu.org> | 2010-12-15 19:47:18 +0000 |
commit | 53f672caaac6f94342d74119d927c790bfca9e9d (patch) | |
tree | f55c9eb1d455256cc299e37b662a93c700347729 /libobjc/sendmsg.c | |
parent | 2a3b37c3b9f09fe9b020294debf96d0298d7be70 (diff) | |
download | gcc-53f672caaac6f94342d74119d927c790bfca9e9d.zip gcc-53f672caaac6f94342d74119d927c790bfca9e9d.tar.gz gcc-53f672caaac6f94342d74119d927c790bfca9e9d.tar.bz2 |
In libobjc/: 2010-12-15 Nicola Pero <nicola.pero@meta-innovation.com>
In libobjc/:
2010-12-15 Nicola Pero <nicola.pero@meta-innovation.com>
* objc/message.h (objc_super): When using the modern API, do not
define Super and Super_t, and always use 'super_class' for the
super class field.
(objc_msg_lookup_super): Updated prototype to use 'struct
objc_super *' instead of 'Super_t'.
* sendmsg.c (objc_msg_lookup_super): Updated prototype to use
'struct objc_super *' instead of 'Super_t'.
From-SVN: r167869
Diffstat (limited to 'libobjc/sendmsg.c')
-rw-r--r-- | libobjc/sendmsg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libobjc/sendmsg.c b/libobjc/sendmsg.c index 48605fc..07452cc 100644 --- a/libobjc/sendmsg.c +++ b/libobjc/sendmsg.c @@ -445,7 +445,7 @@ objc_msg_lookup (id receiver, SEL op) } IMP -objc_msg_lookup_super (Super_t super, SEL sel) +objc_msg_lookup_super (struct objc_super *super, SEL sel) { if (super->self) return get_imp (super->class, sel); |