ObjFW  Check-in [40fe98125b]

Overview
Comment:Fix missing import
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 40fe98125bb00298a4cf2dc31da7ee42df2973dc1e0b7879f9a0ca903bdcedaa
User & Date: js on 2020-10-04 09:53:24
Other Links: manifest | tags
Context
2020-10-04
14:43
PLATFORMS.md: Restore NetBSD versions check-in: 8f17ff1ee4 user: js tags: trunk
14:39
Merge trunk into 1.0 branch check-in: a9f08709d2 user: js tags: 1.0
09:53
Fix missing import check-in: 40fe98125b user: js tags: trunk
01:13
OFURL: Improve nil handling for queryDictionary check-in: a847536ef2 user: js tags: trunk
Changes

Modified src/OFMutableURL.m from [60338f9042] to [596cab8221].

15
16
17
18
19
20
21

22
23
24
25
26
27
28
 * file.
 */

#include "config.h"

#import "OFMutableURL.h"
#import "OFArray.h"

#ifdef OF_HAVE_FILES
# import "OFFileManager.h"
#endif
#import "OFNumber.h"
#import "OFString.h"

#import "OFInvalidFormatException.h"







>







15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
 * file.
 */

#include "config.h"

#import "OFMutableURL.h"
#import "OFArray.h"
#import "OFDictionary.h"
#ifdef OF_HAVE_FILES
# import "OFFileManager.h"
#endif
#import "OFNumber.h"
#import "OFString.h"

#import "OFInvalidFormatException.h"

Modified src/OFURL.m from [5cd00eb456] to [00f085f9ce].

18
19
20
21
22
23
24

25
26
27
28
29
30
31
#include "config.h"

#include <stdlib.h>
#include <string.h>

#import "OFURL.h"
#import "OFArray.h"

#import "OFNumber.h"
#import "OFString.h"
#import "OFXMLElement.h"

#ifdef OF_HAVE_FILES
# import "OFFileManager.h"
# import "OFFileURLHandler.h"







>







18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#include "config.h"

#include <stdlib.h>
#include <string.h>

#import "OFURL.h"
#import "OFArray.h"
#import "OFDictionary.h"
#import "OFNumber.h"
#import "OFString.h"
#import "OFXMLElement.h"

#ifdef OF_HAVE_FILES
# import "OFFileManager.h"
# import "OFFileURLHandler.h"