Differences From Artifact [5621e7a8f4]:
- File src/OFMutableTriple.h — part of check-in [0509d7a844] at 2019-01-03 19:13:03 on branch trunk — Update copyright (user: js, size: 1633) [annotate] [blame] [check-ins using]
To Artifact [524e2b7c05]:
- File
src/OFMutableTriple.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: 1659) [annotate] [blame] [check-ins using] [more...]
︙ | ︙ | |||
27 28 29 30 31 32 33 34 35 36 37 38 39 40 | @interface OFMutableTriple OF_GENERIC(FirstType, SecondType, ThirdType): OFTriple OF_GENERIC(FirstType, SecondType, ThirdType) #if !defined(OF_HAVE_GENERICS) && !defined(DOXYGEN) # define FirstType id # define SecondType id # define ThirdType id #endif /*! * @brief The first object of the triple. */ @property (readwrite, nonatomic, retain) FirstType firstObject; /*! * @brief The second object of the triple. | > > > > | 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | @interface OFMutableTriple OF_GENERIC(FirstType, SecondType, ThirdType): OFTriple OF_GENERIC(FirstType, SecondType, ThirdType) #if !defined(OF_HAVE_GENERICS) && !defined(DOXYGEN) # define FirstType id # define SecondType id # define ThirdType id #endif { OF_RESERVE_IVARS(4) } /*! * @brief The first object of the triple. */ @property (readwrite, nonatomic, retain) FirstType firstObject; /*! * @brief The second object of the triple. |
︙ | ︙ |