ObjFW  Check-in [ae0955585b]

Overview
Comment:OFApplication: Nullability fix
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: ae0955585bf2bcf3fa2e9e810547549479e0cf32fd7480124da5dfb641f0b993
User & Date: js on 2019-06-16 04:51:44
Other Links: manifest | tags
Context
2019-06-16
13:42
runtime: Fix sizeof(sizeof(...)) check-in: b226150570 user: js tags: trunk
04:51
OFApplication: Nullability fix check-in: ae0955585b user: js tags: trunk
01:40
bridge: Improve static types check-in: f8fb6172af user: js tags: trunk
Changes

Modified src/OFApplication.h from [1dfb4a501e] to [b018d35a5c].

267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
/*!
 * @brief Gets argc and argv.
 *
 * @param argc A pointer where a pointer to argc should be stored
 * @param argv A pointer where a pointer to argv should be stored
 */
- (void)getArgumentCount: (int *_Nonnull *_Nonnull)argc
       andArgumentValues: (char *_Nonnull *_Nonnull *_Nonnull[_Nonnull])argv;

/*!
 * @brief Terminates the application.
 */
- (void)terminate OF_NO_RETURN;

/*!







|







267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
/*!
 * @brief Gets argc and argv.
 *
 * @param argc A pointer where a pointer to argc should be stored
 * @param argv A pointer where a pointer to argv should be stored
 */
- (void)getArgumentCount: (int *_Nonnull *_Nonnull)argc
       andArgumentValues: (char *_Nullable *_Nonnull *_Nonnull[_Nonnull])argv;

/*!
 * @brief Terminates the application.
 */
- (void)terminate OF_NO_RETURN;

/*!