ObjFW  Check-in [a4a38f1aea]

Overview
Comment:Fix nullability of of_application_main()
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: a4a38f1aea4807e491a2d81c557af8ddffa54fa3ad86c217316a10c0ae34a520
User & Date: js on 2018-07-07 21:47:28
Other Links: manifest | tags
Context
2018-07-07
22:39
generators: Improve library symlinking check-in: dcfac93cc3 user: js tags: trunk
21:47
Fix nullability of of_application_main() check-in: a4a38f1aea user: js tags: trunk
21:37
Add -[componentsSeparatedByCharactersInSet:] check-in: 8939d24b51 user: js tags: trunk
Changes

Modified src/OFApplication.h from [b60367bda7] to [057a1878e6].

263
264
265
266
267
268
269
270
271
272
273
274
275
#endif
@end

#ifdef __cplusplus
extern "C" {
#endif
extern int of_application_main(int *_Nonnull,
    char *_Nonnull *_Nonnull[_Nonnull], id <OFApplicationDelegate>);
#ifdef __cplusplus
}
#endif

OF_ASSUME_NONNULL_END







|





263
264
265
266
267
268
269
270
271
272
273
274
275
#endif
@end

#ifdef __cplusplus
extern "C" {
#endif
extern int of_application_main(int *_Nonnull,
    char *_Nullable *_Nonnull[_Nonnull], id <OFApplicationDelegate>);
#ifdef __cplusplus
}
#endif

OF_ASSUME_NONNULL_END