mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-17 01:11:45 +00:00
[qfcc] Update chewed-alias test for new warnings
This commit is contained in:
parent
c377b324a1
commit
5200c3f518
1 changed files with 8 additions and 1 deletions
|
@ -1,4 +1,9 @@
|
||||||
@class Array,Object;
|
@interface Array
|
||||||
|
-count;
|
||||||
|
-lastObject;
|
||||||
|
@end
|
||||||
|
@interface Object
|
||||||
|
@end
|
||||||
@static entity waypoint_thinker;
|
@static entity waypoint_thinker;
|
||||||
@static Array *waypoint_queue;
|
@static Array *waypoint_queue;
|
||||||
void foo (void)
|
void foo (void)
|
||||||
|
@ -18,4 +23,6 @@ void __obj_exec_class (struct obj_module *msg) = #0;
|
||||||
@implementation Object
|
@implementation Object
|
||||||
@end
|
@end
|
||||||
@implementation Array
|
@implementation Array
|
||||||
|
-count { return self; }
|
||||||
|
-lastObject { return nil; }
|
||||||
@end
|
@end
|
||||||
|
|
Loading…
Reference in a new issue