Overview
| Comment: | OFValue: Fix missing #include "config.h" |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
0a5cd7e3537ae04e5be811ced16caa48 |
| User & Date: | js on 2022-10-16 18:49:34 |
| Other Links: | manifest | tags |
Context
|
2022-10-17
| ||
| 18:36 | Document more exceptions (check-in: 3da26ce4d2 user: js tags: trunk) | |
|
2022-10-16
| ||
| 18:49 | OFValue: Fix missing #include "config.h" (check-in: 0a5cd7e353 user: js tags: trunk) | |
| 11:00 | Fix one test on AmigaOS/MorphOS (check-in: 95b2ee25d4 user: js tags: trunk) | |
Changes
Modified src/OFValue.m from [904b202568] to [d37e008646].
| ︙ | ︙ | |||
8 9 10 11 12 13 14 15 16 17 18 19 20 21 | * the packaging of this file. * * Alternatively, it may be distributed under the terms of the GNU General * Public License, either version 2 or 3, which can be found in the file * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this * file. */ #import "OFValue.h" #import "OFBytesValue.h" #import "OFMethodSignature.h" #import "OFNonretainedObjectValue.h" #import "OFPointValue.h" #import "OFPointerValue.h" | > > | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | * the packaging of this file. * * Alternatively, it may be distributed under the terms of the GNU General * Public License, either version 2 or 3, which can be found in the file * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this * file. */ #include "config.h" #import "OFValue.h" #import "OFBytesValue.h" #import "OFMethodSignature.h" #import "OFNonretainedObjectValue.h" #import "OFPointValue.h" #import "OFPointerValue.h" |
| ︙ | ︙ |