We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
If you are messaging a Protocol you are out of luck.
Protocol
Otherwise rewrite
+ (BOOL) conformsToProtocol:(Protocol *) protocol
as
+ (BOOL) conformsToProtocol:(PROTOCOL) protocol
If you need to stay backwards compatible, consider
#ifndef __MULLE_OBJC___ typedef Protocol *PROTOCOL #endif
or
#ifndef __MULLE_OBJC___ #define PROTOCOL (Protocol *) #endif