Created
December 22, 2010 23:20
-
-
Save Lytol/752279 to your computer and use it in GitHub Desktop.
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
RegexKit.framework/Headers/RKRegex.h:79:38 Pointer to function type 'NSString *' may not be 'restrict' qualified | |
// The `define restrict` is there because XCode doesn't want to compile | |
// RegexKit with the restrict qualifiers. | |
#define restrict | |
#import <RegexKit/RegexKit.h> |
It's easy to fix, but not very elegant (and removes any compiler optimizations based on the restrict
keyword). See updated gist.
Cool thanks, that did the trick
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm hitting this too, were you able to find a solution to this build error?