mirror of
https://github.com/viq/NewsBlur.git
synced 2025-08-05 16:49:45 +00:00
21 lines
454 B
C
21 lines
454 B
C
![]() |
// PINCache is a modified version of TMCache
|
||
|
// Modifications by Garrett Moon
|
||
|
// Copyright (c) 2015 Pinterest. All rights reserved.
|
||
|
|
||
|
#ifndef PINCache_nullability_h
|
||
|
#define PINCache_nullability_h
|
||
|
|
||
|
#if !__has_feature(nullability)
|
||
|
#define NS_ASSUME_NONNULL_BEGIN
|
||
|
#define NS_ASSUME_NONNULL_END
|
||
|
#define nullable
|
||
|
#define nonnull
|
||
|
#define null_unspecified
|
||
|
#define null_resettable
|
||
|
#define __nullable
|
||
|
#define __nonnull
|
||
|
#define __null_unspecified
|
||
|
#endif
|
||
|
|
||
|
#endif
|