ObjFW  Check-in [a1d0ab5bf9]

Overview
Comment:runtime: Define _Null_unspecified if missing
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | 0.90
Files: files | file ages | folders
SHA3-256: a1d0ab5bf90b050e9c31df3d25ceba4bd4dc4f5aea387d5330bda5f4dbc0b82e
User & Date: js on 2017-10-22 21:12:34
Other Links: branch diff | manifest | tags
Context
2017-10-22
22:13
Set version to 0.90.2 check-in: 3ca682c7ff user: js tags: 0.90
21:12
runtime: Define _Null_unspecified if missing check-in: a1d0ab5bf9 user: js tags: 0.90
14:09
Make Apple GCC with -Wshadow happy check-in: 31c0f5b89e user: js tags: 0.90
Changes

Modified src/runtime/ObjFW-RT.h from [6c5a7458b9] to [490c99bb19].

39
40
41
42
43
44
45



46
47
48
49
50
51
52
#if !__has_feature(nullability)
# ifndef _Nonnull
#  define _Nonnull
# endif
# ifndef _Nullable
#  define _Nullable
# endif



#endif

#if !__has_feature(objc_arc) && !defined(__unsafe_unretained)
# define __unsafe_unretained
#endif

#define Nil (Class _Null_unspecified)0







>
>
>







39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#if !__has_feature(nullability)
# ifndef _Nonnull
#  define _Nonnull
# endif
# ifndef _Nullable
#  define _Nullable
# endif
# ifndef _Null_unspecified
#  define _Null_unspecified
# endif
#endif

#if !__has_feature(objc_arc) && !defined(__unsafe_unretained)
# define __unsafe_unretained
#endif

#define Nil (Class _Null_unspecified)0