Differences From Artifact [b9b4334494]:
- File
src/OFNumber.m
— part of check-in
[6ce0093f8d]
at
2023-04-10 19:22:32
on branch trunk
— Remove OFSerialization
While the idea sounds nice that the tag name is the class, this means the
serialization includes whether something is mutable or immutable. This means
doing as much as making something immutable changes the serialization, which
can then cause issues after being deserialized. (user: js, size: 25689) [annotate] [blame] [check-ins using] [more...]
To Artifact [c9137e7e6f]:
- File src/OFNumber.m — part of check-in [a6f520157a] at 2023-08-08 15:32:43 on branch trunk — A few minor cleanups (user: js, size: 25706) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
480 481 482 483 484 485 486 | @implementation OFNumber + (void)initialize { if (self != [OFNumber class]) return; | | | 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 | @implementation OFNumber + (void)initialize { if (self != [OFNumber class]) return; object_setClass((id)&placeholder, [OFNumberPlaceholder class]); #ifdef OF_OBJFW_RUNTIME numberTag = objc_registerTaggedPointerClass([OFTaggedPointerNumber class]); #endif } |
︙ | ︙ |