mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-29 23:52:22 +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
|
#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
|
@interface Object
|
||||||
{
|
{
|
||||||
Class isa;
|
Class isa;
|
||||||
|
@ -37,9 +41,6 @@
|
||||||
}
|
}
|
||||||
@end
|
@end
|
||||||
|
|
||||||
void __obj_exec_class (struct obj_module *msg) = #0;
|
|
||||||
id obj_msgSend_super (Super *class, SEL op, ...) = #0;
|
|
||||||
|
|
||||||
int main ()
|
int main ()
|
||||||
{
|
{
|
||||||
return 1; // test fails if compile succeeds (with -Werror)
|
return 1; // test fails if compile succeeds (with -Werror)
|
||||||
|
|
Loading…
Reference in a new issue