I'm working on some Objective-C code I expect to spin off into a library or at least share with some other people. It requires ARC to use, and if ARC is not enabled, it will leak memory.
What is the correct way to make the code fail to compile if ARC is turned off?
static_assertand#warningand#errorand all the other useful tools we have to enforce assumptions about the compilation environment. Documentation like that is unenforceable, unnatural, and makes you repeat yourself. – Joe Wreschnig Jul 28 '12 at 19:45-[NSMutableDictionary removeObjectForKey:]docs saying "raises if key is nil" is. – Josh Caswell Jul 28 '12 at 19:55