-
Notifications
You must be signed in to change notification settings - Fork 282
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,18 @@ | ||
2024-10-10: Hugo Melder <[email protected]> | ||
|
||
* Source/NSDate.m: | ||
* Source/NSDatePrivate.h: | ||
NSDate is now a small object in slot 6, when configuring GNUstep with the | ||
clang/libobjc2 toolchain. This is done by compressing the binary64 fp | ||
holding the seconds since reference date (because someone at Apple thought | ||
it would be a good idea to represent a time interval as a fp). Note that | ||
this assumes that IEEE 754 is used. | ||
* Source/NSCalendarDate.m: | ||
Remove access to the NSDate private concrete Class | ||
and implement -timeIntervalSinceReferenceDate instead. | ||
Previously, all methods of the concrete date class were | ||
added to NSCalendarDate via GSObjCAddClassBehavior. | ||
|
||
2024-23-09: Hugo Melder <[email protected]> | ||
|
||
* Headers/Foundation/NSThread.h: | ||
|