From 47910304f7d4c119d65259b98388ec248a28f970 Mon Sep 17 00:00:00 2001 From: nicola Date: Wed, 15 Dec 2010 19:47:18 +0000 Subject: In libobjc/: 2010-12-15 Nicola Pero * 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 --- libobjc/sendmsg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libobjc/sendmsg.c') 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); -- cgit v1.2.1