Overview
Comment: | Add missing #include "config.h" |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
143a03a8f09a7883d385c8d3a6b2beab |
User & Date: | js on 2017-09-09 18:45:27 |
Other Links: | manifest | tags |
Context
2017-09-09
| ||
22:03 | Replace type encodings with OFMethodSignature check-in: 55f1b21ae7 user: js tags: trunk | |
18:45 | Add missing #include "config.h" check-in: 143a03a8f0 user: js tags: trunk | |
11:09 | Have .S file names match the platform defines check-in: 754d22a701 user: js tags: trunk | |
Changes
Modified src/OFHMAC.m from [7f4d2f3cf3] to [298535fc6e].
︙ | ︙ | |||
9 10 11 12 13 14 15 16 17 18 19 20 21 22 | * 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 "OFHMAC.h" #import "OFHashAlreadyCalculatedException.h" #import "OFInvalidArgumentException.h" @implementation OFHMAC | > > | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | * 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 "OFHMAC.h" #import "OFHashAlreadyCalculatedException.h" #import "OFInvalidArgumentException.h" @implementation OFHMAC |
︙ | ︙ |
Modified src/OFMutablePair.m from [5794d68209] to [fd16e0b90e].
︙ | ︙ | |||
9 10 11 12 13 14 15 16 17 18 19 20 21 22 | * 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 "OFMutablePair.h" @implementation OFMutablePair @dynamic firstObject, secondObject; - (void)setFirstObject: (id)firstObject | > > | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | * 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 "OFMutablePair.h" @implementation OFMutablePair @dynamic firstObject, secondObject; - (void)setFirstObject: (id)firstObject |
︙ | ︙ |
Modified src/OFMutableTriple.m from [7fdfcd095c] to [d48b052c76].
︙ | ︙ | |||
9 10 11 12 13 14 15 16 17 18 19 20 21 22 | * 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 "OFMutableTriple.h" @implementation OFMutableTriple @dynamic firstObject, secondObject, thirdObject; - (void)setFirstObject: (id)firstObject | > > | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | * 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 "OFMutableTriple.h" @implementation OFMutableTriple @dynamic firstObject, secondObject, thirdObject; - (void)setFirstObject: (id)firstObject |
︙ | ︙ |
Modified src/OFPair.m from [52a79e789f] to [88cab493bc].
︙ | ︙ | |||
9 10 11 12 13 14 15 16 17 18 19 20 21 22 | * 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 "OFPair.h" #import "OFString.h" @implementation OFPair + (instancetype)pairWithFirstObject: (id)firstObject secondObject: (id)secondObject | > > | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | * 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 "OFPair.h" #import "OFString.h" @implementation OFPair + (instancetype)pairWithFirstObject: (id)firstObject secondObject: (id)secondObject |
︙ | ︙ |
Modified src/OFSandbox.m from [23c027450b] to [0482993709].
︙ | ︙ | |||
9 10 11 12 13 14 15 16 17 18 19 20 21 22 | * 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 "OFSandbox.h" #import "OFString.h" #import "OFArray.h" @implementation OFSandbox + (instancetype)sandbox | > > | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | * 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 "OFSandbox.h" #import "OFString.h" #import "OFArray.h" @implementation OFSandbox + (instancetype)sandbox |
︙ | ︙ |
Modified src/OFTriple.m from [8847fb6233] to [76e6072d35].
︙ | ︙ | |||
9 10 11 12 13 14 15 16 17 18 19 20 21 22 | * 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 "OFTriple.h" #import "OFString.h" @implementation OFTriple + (instancetype)tripleWithFirstObject: (id)firstObject secondObject: (id)secondObject | > > | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | * 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 "OFTriple.h" #import "OFString.h" @implementation OFTriple + (instancetype)tripleWithFirstObject: (id)firstObject secondObject: (id)secondObject |
︙ | ︙ |