How can I suppress the "dead store" warning on a single file in Xcode?
I tried
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wunused-value"
without luck. Any suggestions?
BTW, I don't want to "fix" the code, because I'm creating a bunch of objects only for the sake of inserting them into a Core Data database. I don't want to do anything else with them at the moment.