UGCKitMem.h 322 B

12345678910
  1. // Copyright (c) 2019 Tencent. All rights reserved.
  2. #ifndef Memory_h
  3. #define Memory_h
  4. #define WEAKIFY(x) __weak __typeof(x) weak_##x = x
  5. #define STRONGIFY(x) __strong __typeof(weak_##x) x = weak_##x
  6. #define STRONGIFY_OR_RETURN(x) __strong __typeof(weak_##x) x = weak_##x; if (x == nil) {return;};
  7. #endif /* Memory_h */