mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-19 07:20:50 +00:00
Fix some problems found by the new qfcc.
With this, ruamoko/lib almost compiles (though no object files are output). Just some bogus "redeclared" errors and an improperly implemented statement that produces an ice.
This commit is contained in:
parent
daae0284a1
commit
595019d86e
3 changed files with 3 additions and 2 deletions
|
@ -45,6 +45,7 @@
|
||||||
|
|
||||||
data = [anObject retain];
|
data = [anObject retain];
|
||||||
nextNode = nil;
|
nextNode = nil;
|
||||||
|
return self;
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void) dealloc
|
- (void) dealloc
|
||||||
|
|
|
@ -77,7 +77,7 @@
|
||||||
return self;
|
return self;
|
||||||
}
|
}
|
||||||
|
|
||||||
-dealloc
|
- (void) dealloc
|
||||||
{
|
{
|
||||||
if (own)
|
if (own)
|
||||||
PL_Free (item);
|
PL_Free (item);
|
||||||
|
|
|
@ -73,7 +73,7 @@
|
||||||
|
|
||||||
- (integer) count
|
- (integer) count
|
||||||
{
|
{
|
||||||
|
return stackSize;
|
||||||
}
|
}
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
|
Loading…
Reference in a new issue