mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-26 10:11:03 +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
d5e5776f83
commit
4e9274ba9d
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>
|
Mon Aug 28 23:45:15 2001 Nicola Pero <n.pero@mi.flashnet.it>
|
||||||
|
|
||||||
* Source/NSCalendarDate.m ([+dateWithString:calendarFormat:]):
|
* Source/NSCalendarDate.m ([+dateWithString:calendarFormat:]):
|
||||||
|
|
|
@ -40,6 +40,8 @@ typedef union {
|
||||||
typedef void(*apply_t)(void); /* function pointer */
|
typedef void(*apply_t)(void); /* function pointer */
|
||||||
#define TypedStream void*
|
#define TypedStream void*
|
||||||
|
|
||||||
|
#define METHOD_NULL (struct objc_method *)0
|
||||||
|
|
||||||
#define class_pointer isa
|
#define class_pointer isa
|
||||||
typedef struct objc_super Super;
|
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)
|
id next_objc_msg_sendv(id object, SEL op, void* frame)
|
||||||
{
|
{
|
||||||
arglist_t argFrame = __builtin_apply_args();
|
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;
|
const char *type;
|
||||||
void *result;
|
void *result;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue