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:
Bill Currie 2011-02-13 21:29:24 +09:00
parent daae0284a1
commit 595019d86e
3 changed files with 3 additions and 2 deletions

View file

@ -45,6 +45,7 @@
data = [anObject retain]; data = [anObject retain];
nextNode = nil; nextNode = nil;
return self;
} }
- (void) dealloc - (void) dealloc

View file

@ -77,7 +77,7 @@
return self; return self;
} }
-dealloc - (void) dealloc
{ {
if (own) if (own)
PL_Free (item); PL_Free (item);

View file

@ -73,7 +73,7 @@
- (integer) count - (integer) count
{ {
return stackSize;
} }
@end @end