Skip to content

Instantly share code, notes, and snippets.

@Lytol
Created December 22, 2010 23:20
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Lytol/752279 to your computer and use it in GitHub Desktop.
Save Lytol/752279 to your computer and use it in GitHub Desktop.
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>
@kgn
Copy link

kgn commented Feb 2, 2011

I'm hitting this too, were you able to find a solution to this build error?

@Lytol
Copy link
Author

Lytol commented Feb 2, 2011

It's easy to fix, but not very elegant (and removes any compiler optimizations based on the restrict keyword). See updated gist.

@kgn
Copy link

kgn commented Feb 2, 2011

Cool thanks, that did the trick

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment