mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-29 05:31:26 +00:00
[ruamoko] Add no_va_list to obj_msgSend's definition
The declaration in qfcc has it resulting in a type mismatch (due to fixing type attributes).
This commit is contained in:
parent
ab239d2d6a
commit
5856adc2c0
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ void (id object, int code, string fmt, @va_list args) obj_verror = #0;
|
|||
//obj_error_handler obj_set_error_handler (objc_error_handler func) = #0;
|
||||
IMP (id receiver, SEL op) obj_msg_lookup = #0;
|
||||
IMP (Super class, SEL op) obj_msg_lookup_super = #0;
|
||||
id (id receiver, SEL op, ...) obj_msgSend = #0;
|
||||
@attribute(no_va_list) id (id receiver, SEL op, ...) obj_msgSend = #0;
|
||||
id obj_msgSend_super (Super *class, SEL op, ...) = #0;
|
||||
@attribute(void_return) void obj_msg_sendv (id receiver, SEL op, @va_list args) = #0;
|
||||
int obj_decrement_retaincount (id object) = #0;
|
||||
|
|
Loading…
Reference in a new issue