| |||
| [Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] |
Sandy
On Jun 25, 2005, at 4:39 PM, Lawrence Gold wrote:
Quinn Dunki wrote:
Upon further investigation, I've learned more about this problem. It appears to be only 1 of my 8 plugins that is malfunctioning. Furthermore, it is doing so in a very specific way. For some reason, when it encounters this block of code (simplified for testing):
switch (foo) // foo is 0-3 { case 0: case 1: case 3: int goo=0; return;
default: int bar=1; return; }
It shouldn't make a difference, but could you enclose the bodies of the
case statements in { }? For example,
case 0: case 1: case 3: { int goo=0; } break;
GCC should warn about the code you gave in the example, though I think it shouldn't be a problem for built-in simple types like 'int'.
_______________________________________________ Do not post admin requests to the list. They will be ignored. Xcode-users mailing list (email@hidden) Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/xcode-users/email@hidden
| References: | |
| >Xcode Project File Format (From: Michael Rice <email@hidden>) | |
| >Re: Xcode Project File Format (From: Mike Lazear <email@hidden>) | |
| >Re: Xcode Project File Format (From: "Corey O'Connor" <email@hidden>) | |
| >Re: Xcode Project File Format (From: Scott Tooker <email@hidden>) | |
| >Re: Xcode Project File Format (From: Michael Rice <email@hidden>) | |
| >dlopen woes under XCode 2.1 (From: Quinn Dunki <email@hidden>) | |
| >Re: dlopen woes under XCode 2.1 (From: Quinn Dunki <email@hidden>) |
| Home | Archives | FAQ | Terms/Conditions | Contact | RSS | Lists | About |
Visit the Apple Store online or at retail locations.
1-800-MY-APPLE
Contact Apple | Terms of Use | Privacy Policy
Copyright © 2007 Apple Inc. All rights reserved.