-
-
Save SofijaErkin/e1fa6a6040779c1bc9ed4c8e7d447c18 to your computer and use it in GitHub Desktop.
llvm gcc vs. Apple LLVM 3.0 (clang)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@interface AppDelegate : UIResponder <UIApplicationDelegate> | |
@property ( | |
#ifdef __clang__ | |
strong, | |
#endif | |
nonatomic) UIWindow *window; | |
@end | |
#import <UIKit/UIKit.h> | |
#import "AppDelegate.h" | |
int main(int argc, char *argv[]) | |
{ | |
#ifdef __clang__ | |
@autoreleasepool { | |
#endif | |
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); | |
#ifdef __clang__ | |
} | |
#endif | |
} | |
@property ( | |
#ifdef __clang__ | |
strong, | |
#endif | |
nonatomic) EAGLContext *context; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment