Differences From Artifact [3e2b10c31b]:
- File
src/OFINICategory.h
— part of check-in
[4af49a13c3]
at
2017-05-07 20:10:13
on branch trunk
— Small code style change
Casts are now written like types in variable declarations. (user: js, size: 7831) [annotate] [blame] [check-ins using]
To Artifact [2a41b8afa0]:
- File src/OFINICategory.h — part of check-in [16c05e87e1] at 2017-05-07 23:14:22 on branch trunk — Add OF_UNAVAILABLE (user: js, size: 7855) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
35 36 37 38 39 40 41 42 43 44 45 46 47 48 | OFMutableArray *_lines; } /*! * The name of the INI category */ @property (nonatomic, copy) OFString *name; /*! * @brief Returns the string value for the specified key, or `nil` if it does * not exist. * * If the specified key is a multi-key (see @ref arrayForKey:), the value of * the first key/value pair found is returned. | > > | 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | OFMutableArray *_lines; } /*! * The name of the INI category */ @property (nonatomic, copy) OFString *name; - init OF_UNAVAILABLE; /*! * @brief Returns the string value for the specified key, or `nil` if it does * not exist. * * If the specified key is a multi-key (see @ref arrayForKey:), the value of * the first key/value pair found is returned. |
︙ | ︙ |