Differences From Artifact [b7baf69af5]:
- File
src/exceptions/OFMemoryNotPartOfObjectException.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: 2073) [annotate] [blame] [check-ins using]
To Artifact [984ee3d5d4]:
- File src/exceptions/OFMemoryNotPartOfObjectException.h — part of check-in [cc3ad3ddd3] at 2017-11-18 18:50:50 on branch trunk — Documentation: Use @brief for all properties (user: js, size: 2087) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
28 29 30 31 32 33 34 | @interface OFMemoryNotPartOfObjectException: OFException { void *_Nullable _pointer; id _object; } /*! | | | | 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | @interface OFMemoryNotPartOfObjectException: OFException { void *_Nullable _pointer; id _object; } /*! * @brief A pointer to the memory which is not part of the object. */ @property OF_NULLABLE_PROPERTY (readonly, nonatomic) void *pointer; /*! * @brief The object which the memory is not part of. */ @property (readonly, nonatomic) id object; + (instancetype)exception OF_UNAVAILABLE; /*! * @brief Creates a new, autoreleased memory not part of object exception. |
︙ | ︙ |