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