Skip to content

Instantly share code, notes, and snippets.

@mayoff
Created August 18, 2012 05:24
Show Gist options
  • Save mayoff/3384659 to your computer and use it in GitHub Desktop.
Save mayoff/3384659 to your computer and use it in GitHub Desktop.
Make objc_msgSend without a cast give a warning
#define objc_msgSend(...) (objc_msgSend_without_cast())(__VA_ARGS__)
static inline id (*objc_msgSend_without_cast(void))(id, SEL, ...) __attribute__((deprecated("objc_msgSend must be cast to the correct type")));
static inline id (*objc_msgSend_without_cast(void))(id, SEL, ...) {
return objc_msgSend;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment