ObjFW  Check-in [9d0bd1e896]

Overview
Comment:Work around a GCC bug
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 9d0bd1e8963c5e7db5754bd098ec3bac5532227104549287cd49fc035ca08ea9
User & Date: js on 2023-08-09 15:33:36
Other Links: manifest | tags
Context
2023-08-09
16:24
OFConcrete{Number,Value}: Copy the type encoding check-in: 723c19a44b user: js tags: trunk
15:33
Work around a GCC bug check-in: 9d0bd1e896 user: js tags: trunk
15:24
Make OFNumber a proper class cluster check-in: c9115cce73 user: js tags: trunk
Changes

Modified src/OFTaggedPointerNumber.h from [633c5d8265] to [ab4cf3f56e].

14
15
16
17
18
19
20
21
22
23
24
25
26
27
 */

#import "OFNumber.h"

OF_ASSUME_NONNULL_BEGIN

#ifdef OF_OBJFW_RUNTIME
static const uint_fast8_t OFTaggedPointerNumberTagBits = 4;

@interface OFTaggedPointerNumber: OFNumber
@end
#endif

OF_ASSUME_NONNULL_END







|






14
15
16
17
18
19
20
21
22
23
24
25
26
27
 */

#import "OFNumber.h"

OF_ASSUME_NONNULL_BEGIN

#ifdef OF_OBJFW_RUNTIME
# define OFTaggedPointerNumberTagBits 4

@interface OFTaggedPointerNumber: OFNumber
@end
#endif

OF_ASSUME_NONNULL_END