mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 05:01:26 +00:00
2c84ae4898
This fixes Deek's temp notice. No new notices have shown up, so this should be the correct fix. The constant folding code no longer calls cast_expr directly, but rather uses an internal wrapper that decrements users after cast_expr increments it, resulting in a no-op.
13 lines
143 B
R
13 lines
143 B
R
@interface foo
|
|
{
|
|
unsigned count;
|
|
id []_objs;
|
|
}
|
|
@end
|
|
|
|
@implementation foo
|
|
- (void) foofoo: (id) anObject
|
|
{
|
|
_objs[count++] = anObject;
|
|
}
|
|
@end
|