mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Fix incorrect def
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@10801 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
74d7131451
commit
1884fa8ad7
3 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
2001-08-29 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* Source/objc-gnu2next.m (next_objc_msg_send): Fix incorrect def.
|
||||
|
||||
Mon Aug 28 23:45:15 2001 Nicola Pero <n.pero@mi.flashnet.it>
|
||||
|
||||
* Source/NSCalendarDate.m ([+dateWithString:calendarFormat:]):
|
||||
|
|
|
@ -40,6 +40,8 @@ typedef union {
|
|||
typedef void(*apply_t)(void); /* function pointer */
|
||||
#define TypedStream void*
|
||||
|
||||
#define METHOD_NULL (struct objc_method *)0
|
||||
|
||||
#define class_pointer isa
|
||||
typedef struct objc_super Super;
|
||||
|
||||
|
|
|
@ -449,7 +449,7 @@ sel_types_match (const char* t1, const char* t2)
|
|||
id next_objc_msg_sendv(id object, SEL op, void* frame)
|
||||
{
|
||||
arglist_t argFrame = __builtin_apply_args();
|
||||
Method *m = class_get_instance_method(object->class_pointer, op);
|
||||
struct objc_method *m = class_get_instance_method(object->class_pointer, op);
|
||||
const char *type;
|
||||
void *result;
|
||||
|
||||
|
|
Loading…
Reference in a new issue