ObjFW  Diff

Differences From Artifact [6d7bca5c41]:

  • File src/exceptions/OFUnboundPrefixException.h — part of check-in [29bc151b83] at 2022-04-25 13:08:22 on branch trunk — More declaration reordering for consistency (user: js size: 1884) [more...]

To Artifact [c1eaadb13e]:

  • File src/exceptions/OFUnboundPrefixException.h — part of check-in [c40a295629] at 2022-09-12 14:34:38 on branch trunk — Either restrict subclassing or reserve ivars (user: js size: 1931) [more...]

25
26
27
28
29
30
31

32
33
34
35
36
37
38
 *
 * @brief An exception indicating an attempt to use an unbound prefix.
 */
@interface OFUnboundPrefixException: OFException
{
	OFString *_prefix;
	OFXMLParser *_parser;

}

/**
 * @brief The unbound prefix.
 */
@property (readonly, nonatomic) OFString *prefix;








>







25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
 *
 * @brief An exception indicating an attempt to use an unbound prefix.
 */
@interface OFUnboundPrefixException: OFException
{
	OFString *_prefix;
	OFXMLParser *_parser;
	OF_RESERVE_IVARS(OFUnboundPrefixException, 4)
}

/**
 * @brief The unbound prefix.
 */
@property (readonly, nonatomic) OFString *prefix;