mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-26 14:20:59 +00:00
[qfcc] Fix incorrect build error in dealloc-warn2
It was dying due to an undefined symbol rather than the warning.
This commit is contained in:
parent
a5f82004bc
commit
1293fc5d0e
1 changed files with 4 additions and 3 deletions
|
@ -1,5 +1,9 @@
|
|||
#pragma warn error
|
||||
|
||||
void __obj_exec_class (struct obj_module *msg) = #0;
|
||||
id obj_msgSend_super (Super *class, SEL op, ...) = #0;
|
||||
id obj_msgSend (Super *class, SEL op, ...) = #0;
|
||||
|
||||
@interface Object
|
||||
{
|
||||
Class isa;
|
||||
|
@ -37,9 +41,6 @@
|
|||
}
|
||||
@end
|
||||
|
||||
void __obj_exec_class (struct obj_module *msg) = #0;
|
||||
id obj_msgSend_super (Super *class, SEL op, ...) = #0;
|
||||
|
||||
int main ()
|
||||
{
|
||||
return 1; // test fails if compile succeeds (with -Werror)
|
||||
|
|
Loading…
Reference in a new issue