Created
May 7, 2012 21:50
-
-
Save levigroker/2630702 to your computer and use it in GitHub Desktop.
Override deprecation compiler warning
This file contains 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
#ifdef DEBUG | |
#pragma clang diagnostic push | |
#pragma clang diagnostic ignored "-Wdeprecated-declarations" | |
[TestFlight setDeviceIdentifier:[[UIDevice currentDevice] uniqueIdentifier]]; | |
#pragma clang diagnostic pop | |
#endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment