PINOperationMacros.h 519 B

123456789101112131415
  1. //
  2. // PINOperationMacros.h
  3. // PINOperation
  4. //
  5. // Created by Adlai Holler on 1/10/17.
  6. // Copyright © 2017 Pinterest. All rights reserved.
  7. //
  8. #ifndef PINOP_SUBCLASSING_RESTRICTED
  9. #if defined(__has_attribute) && __has_attribute(objc_subclassing_restricted)
  10. #define PINOP_SUBCLASSING_RESTRICTED __attribute__((objc_subclassing_restricted))
  11. #else
  12. #define PINOP_SUBCLASSING_RESTRICTED
  13. #endif // #if defined(__has_attribute) && __has_attribute(objc_subclassing_restricted)
  14. #endif // #ifndef PINOP_SUBCLASSING_RESTRICTED