Is it possible to use the __unused attribute macro on Objective-C object method parameters? I\'ve tried placing it in various positions around the parameter declaration but
After fighting with the #pragma for a while, I discovered it's
+ (NSString*) runQuery:(id)query name:(NSString*)name options:(NSDictionary*)options { #pragma unused(name) ... }