Differences From Artifact [1afc7b2b50]:
- File src/runtime/ObjFWRT.h — part of check-in [d65fefedc7] at 2020-05-30 15:33:12 on branch trunk — runtime: Document all types (user: js, size: 10788) [annotate] [blame] [check-ins using]
To Artifact [439a147585]:
- File
src/runtime/ObjFWRT.h
— part of check-in
[c1d50ed305]
at
2020-05-31 03:37:28
on branch trunk
— Don't use @deprecated
It causes Clang to emit a warning when there is no
__attribute__((deprecated)) as well. (user: js, size: 10926) [annotate] [blame] [check-ins using] [more...]
︙ | ︙ | |||
62 63 64 65 66 67 68 | * @brief A value representing no object. */ #define nil (id _Null_unspecified)0 /*! * @brief An Objective-C boolean representing true. * | > | > | | 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 | * @brief A value representing no object. */ #define nil (id _Null_unspecified)0 /*! * @brief An Objective-C boolean representing true. * * @note This is a legacy from before C had a boolean type. Prefer the standard * C99 true instead! */ #define YES true /*! * @brief An Objective-C boolean representing false. * * @note This is a legacy from before C had a boolean type. Prefer the standard * C99 false instead! */ #define NO false /*! @file */ /*! * @brief A pointer to a class. |
︙ | ︙ | |||
123 124 125 126 127 128 129 | */ typedef const struct objc_property *objc_property_t; #if !defined(__wii__) && !defined(__amigaos__) /*! * @brief An Objective-C boolean. Either @ref YES or @ref NO. * | > | | 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 | */ typedef const struct objc_property *objc_property_t; #if !defined(__wii__) && !defined(__amigaos__) /*! * @brief An Objective-C boolean. Either @ref YES or @ref NO. * * @note This is a legacy from before C had a boolean type. Prefer the standard * C99 bool instead! */ typedef bool BOOL; #endif /*! * @brief A method implemenation. * |
︙ | ︙ |