Differences From Artifact [3ccea224dd]:
- File src/exceptions/OFLockFailedException.h — part of check-in [cc5923d6bb] at 2017-06-04 23:41:38 on branch trunk — Add designated initializer to all exceptions (user: js, size: 1533) [annotate] [blame] [check-ins using]
To Artifact [689016254d]:
- File
src/exceptions/OFLockFailedException.h
— part of check-in
[2f4e0df8be]
at
2017-10-17 00:33:37
on branch trunk
— Do not use implicit method return types
Instead, explicitly declare them, as OF_ASSUME_NONNULL_{BEGIN,END} does
not apply to implicit return types. This means that after this commit,
all init methods have a nonnull return type, as they should have. (user: js, size: 1551) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
45 46 47 48 49 50 51 | /*! * @brief Initializes an already allocated lock failed exception. * * @param lock The lock which could not be locked * @return An initialized lock failed exception */ | | > | 45 46 47 48 49 50 51 52 53 54 55 56 | /*! * @brief Initializes an already allocated lock failed exception. * * @param lock The lock which could not be locked * @return An initialized lock failed exception */ - (instancetype)initWithLock: (nullable id <OFLocking>)lock OF_DESIGNATED_INITIALIZER; @end OF_ASSUME_NONNULL_END |