ObjFW  Check-in [23249cfbc0]

Overview
Comment:Fix warning with Clang 19
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 23249cfbc033c9574a74103a1c9210628d81045c7a5b9d41279ddd567cd23f93
User & Date: js on 2024-10-09 23:53:05
Other Links: manifest | tags
Context
2024-10-10
00:21
Better skip UNIX sequenced packet socket tests Leaf check-in: e267c68e6f user: js tags: trunk
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
23:51
Add OFUNIXSequencedPacketSocket check-in: 69d0f06372 user: js tags: trunk
Changes

Modified src/OFObject.h from [19c484f42c] to [0693f844c8].

1332
1333
1334
1335
1336
1337
1338
1339

1340
1341
1342
1343
1344
1345
1346
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
 * @throw OFNotImplementedException The method is not implemented
 */
- (void)doesNotRecognizeSelector: (SEL)selector OF_NO_RETURN;
@end

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