ObjFW  Check-in [986553ba41]

Overview
Comment:Fix warning with Clang 19
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | 1.1
Files: files | file ages | folders
SHA3-256: 986553ba4162465ff3a2d49a3cd491460db4bb71b009f9848390ab95495a080b
User & Date: js on 2024-10-09 23:53:23
Other Links: branch diff | manifest | tags
Context
2024-10-09
23:53
Fix warning with Clang 19 Leaf check-in: 986553ba41 user: js tags: 1.1
23:53
Fix warning with Clang 19 check-in: 23249cfbc0 user: js tags: trunk
2024-09-21
23:01
Update misc/keys.asc check-in: 76bda9647d user: js tags: 1.1
Changes

Modified src/OFObject.h from [7b8537b8d6] to [000a9e21ad].

1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
/**
 * @brief Handles messages which are not understood by the receiver.
 *
 * @warning If you override this method, you must make sure that it never
 *	    returns!
 *
 * @param selector The selector not understood by the receiver
 * @throw OFNotImplementedException
 */
- (void)doesNotRecognizeSelector: (SEL)selector OF_NO_RETURN;
@end

/**
 * @protocol OFCopying OFObject.h ObjFW/OFObject.h
 *







|







1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
/**
 * @brief Handles messages which are not understood by the receiver.
 *
 * @warning If you override this method, you must make sure that it never
 *	    returns!
 *
 * @param selector The selector not understood by the receiver
 * @throw OFNotImplementedException The method is not implemented
 */
- (void)doesNotRecognizeSelector: (SEL)selector OF_NO_RETURN;
@end

/**
 * @protocol OFCopying OFObject.h ObjFW/OFObject.h
 *