diff options
author | nicola <nicola@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-12-15 19:47:18 +0000 |
---|---|---|
committer | nicola <nicola@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-12-15 19:47:18 +0000 |
commit | 47910304f7d4c119d65259b98388ec248a28f970 (patch) | |
tree | f55c9eb1d455256cc299e37b662a93c700347729 /libobjc/sendmsg.c | |
parent | e05147e9c51d84f6f39b09e6784f677979754eaf (diff) | |
download | gcc-47910304f7d4c119d65259b98388ec248a28f970.tar.gz |
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'.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@167869 138bc75d-0d04-0410-961f-82ee72b054a4
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 48605fc67f8..07452cceb79 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); |