Overview
| Comment: | OFDate: Fix missing #ifdef |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | tagged-pointers |
| Files: | files | file ages | folders |
| SHA3-256: |
096c2662d6699cf9cc95127987bde1b6 |
| User & Date: | js on 2020-07-25 17:24:22 |
| Other Links: | branch diff | manifest | tags |
Context
|
2020-07-25
| ||
| 18:32 | OFDate: Also ignore -Wunknown-pragmas (check-in: 94c7e3e8f3 user: js tags: tagged-pointers) | |
| 17:24 | OFDate: Fix missing #ifdef (check-in: 096c2662d6 user: js tags: tagged-pointers) | |
| 16:22 | OFDate: Use tagged pointers (check-in: ad37db9133 user: js tags: tagged-pointers) | |
Changes
Modified src/OFDate.m from [bec84a8a1e] to [1dcb1c7fda].
| ︙ | ︙ | |||
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 |
#endif
static struct {
Class isa;
} placeholder;
static OFDateSingleton *zeroDate, *distantFuture, *distantPast;
static int dateTag;
static void
initZeroDate(void)
{
zeroDate = [[OFDateSingleton alloc] initWithTimeIntervalSince1970: 0];
}
| > > | 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 |
#endif
static struct {
Class isa;
} placeholder;
static OFDateSingleton *zeroDate, *distantFuture, *distantPast;
#if defined(OF_OBJFW_RUNTIME) && UINTPTR_MAX == UINT64_MAX
static int dateTag;
#endif
static void
initZeroDate(void)
{
zeroDate = [[OFDateSingleton alloc] initWithTimeIntervalSince1970: 0];
}
|
| ︙ | ︙ |