From 53f672caaac6f94342d74119d927c790bfca9e9d Mon Sep 17 00:00:00 2001 From: Nicola Pero Date: Wed, 15 Dec 2010 19:47:18 +0000 Subject: In libobjc/: 2010-12-15 Nicola Pero 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'. From-SVN: r167869 --- 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 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); -- cgit v1.1