Differences From Artifact [280263548d]:
- File src/OFTarArchiveEntry.h — part of check-in [0509d7a844] at 2019-01-03 19:13:03 on branch trunk — Update copyright (user: js, size: 3841) [annotate] [blame] [check-ins using]
To Artifact [7184d9b8e2]:
- File
src/OFTarArchiveEntry.h
— part of check-in
[496695d778]
at
2019-09-29 19:35:38
on branch trunk
— Either restrict subclassing or reserve ivar space
This allows ABI stability with the fragile ABI. (user: js, size: 3862) [annotate] [blame] [check-ins using] [more...]
︙ | ︙ | |||
57 58 59 60 61 62 63 64 65 66 67 68 69 70 | uint64_t _size; uint32_t _UID, _GID; OFDate *_modificationDate; of_tar_archive_entry_type_t _type; OFString *_Nullable _targetFileName; OFString *_Nullable _owner, *_Nullable _group; uint32_t _deviceMajor, _deviceMinor; } /*! * @brief The file name of the entry. */ @property (readonly, copy, nonatomic) OFString *fileName; | > | 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | uint64_t _size; uint32_t _UID, _GID; OFDate *_modificationDate; of_tar_archive_entry_type_t _type; OFString *_Nullable _targetFileName; OFString *_Nullable _owner, *_Nullable _group; uint32_t _deviceMajor, _deviceMinor; OF_RESERVE_IVARS(4) } /*! * @brief The file name of the entry. */ @property (readonly, copy, nonatomic) OFString *fileName; |
︙ | ︙ |