Change it to:
- (void)TestFunction
{
switch (1) {
case 1:
{
NSMutableArray *myArray=[[NSMutableArray alloc]
init];
break;
}
}
}
No need to declare default if it's unused. Also you need to bracket
the statement in the switch if you're going to declare vars there.
On Apr 17, 2008, at 4:47 PM, Don Arnel wrote:
- (void)TestFunction
{
switch (1) {
case 1:
//NSMutableArray *myArray=[[NSMutableArray alloc] init];
break;
default:
}
(x)(error: label at end of compound statement)
}
_______________________________________________
Cocoa-dev mailing list ([email protected])
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com
This email sent to [EMAIL PROTECTED]