ObjFW  Check-in [248fd739a5]

Overview
Comment:TestsAppDelegate: Fix #ifdef
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 248fd739a52e0e0c424e87249ab34e7981843642321e957f83356782a4d7f6b8
User & Date: js on 2018-02-16 23:25:05
Other Links: manifest | tags
Context
2018-02-16
23:58
Add of_ascii_isdigit() check-in: b34c78251b user: js tags: trunk
23:25
TestsAppDelegate: Fix #ifdef check-in: 248fd739a5 user: js tags: trunk
22:25
Remove OF_UNAVAILABLE from two -[init] methods check-in: dae363ef82 user: js tags: trunk
Changes

Modified tests/TestsAppDelegate.m from [ab19980a71] to [a9b0ea0b54].

19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34

#include <stdlib.h>

#import "ObjFW.h"

#import "TestsAppDelegate.h"

#if defined(STDOUT) && (defined(OF_WINDOWS) || defined(OF_MSDOS)) || \
    defined(OF_IOS)
# undef STDOUT
# define STDOUT_SIMPLE
#endif

#ifdef OF_IOS
# include <CoreFoundation/CoreFoundation.h>
#endif







|
|







19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34

#include <stdlib.h>

#import "ObjFW.h"

#import "TestsAppDelegate.h"

#if defined(STDOUT) && (defined(OF_WINDOWS) || defined(OF_MSDOS) || \
    defined(OF_IOS))
# undef STDOUT
# define STDOUT_SIMPLE
#endif

#ifdef OF_IOS
# include <CoreFoundation/CoreFoundation.h>
#endif