ObjFW  Check-in [16bdabb65c]

Overview
Comment:OFLockFailedException: Add missing nullable
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 16bdabb65c9bec68b00999d64c1e65349b772bcc2c968fc9be500374f87c4824
User & Date: js on 2022-04-25 16:12:16
Other Links: manifest | tags
Context
2022-04-25
19:01
More declaration reordering check-in: d9fb19b0a1 user: js tags: trunk
16:12
OFLockFailedException: Add missing nullable check-in: 16bdabb65c user: js tags: trunk
15:34
Use a typedef for NSFastEnumerationState check-in: 4c09929cca user: js tags: trunk
Changes

Modified src/exceptions/OFLockFailedException.h from [f55c3bbe2e] to [e861f27ee4].

22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
 * @class OFLockFailedException \
 *	  OFLockFailedException.h ObjFW/OFLockFailedException.h
 *
 * @brief An exception indicating that locking a lock failed.
 */
@interface OFLockFailedException: OFException
{
	id <OFLocking> _lock;
	int _errNo;
}

/**
 * @brief The lock which could not be locked.
 */
@property OF_NULLABLE_PROPERTY (readonly, nonatomic) id <OFLocking> lock;







|







22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
 * @class OFLockFailedException \
 *	  OFLockFailedException.h ObjFW/OFLockFailedException.h
 *
 * @brief An exception indicating that locking a lock failed.
 */
@interface OFLockFailedException: OFException
{
	id <OFLocking> _Nullable _lock;
	int _errNo;
}

/**
 * @brief The lock which could not be locked.
 */
@property OF_NULLABLE_PROPERTY (readonly, nonatomic) id <OFLocking> lock;