ios - Suppressing warnings in Xcode 7 -
until in xcode 6 able suppress warnings external libraries using pragma directives, this:
#pragma clang diagnostic push #pragma clang diagnostic ignored "-wdocumentation" #import "swifttoobjectivec-swift.h" #pragma clang diagnostic pop
since updated project xcode 7 directives seem nothing, documentation warnings on swifttoobjectivec-swift.h. has idea problem?
thanks!
Comments
Post a Comment