ObjFW  Check-in [cbd8cf22c1]

Overview
Comment:Fix wrong imports.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | 0.7-release | 0.7
Files: files | file ages | folders
SHA3-256: cbd8cf22c15a950557a45d7b0d8756f04ca5ad4ce2d883466efdd4e1d6407222
User & Date: js on 2012-10-28 12:37:31
Other Links: branch diff | manifest | tags
Context
2012-10-29
08:00
Documentation improvements. check-in: 7a3977d7fd user: js tags: 0.7
2012-10-28
12:37
Fix wrong imports. check-in: cbd8cf22c1 user: js tags: 0.7-release, 0.7
2012-10-27
16:17
Update ChangeLog for 0.7. check-in: 8609ae5d34 user: js tags: 0.7
Changes

Modified src/OFDate.m from [66b4bbf344] to [da5cc3c73a].

26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#include <sys/time.h>

#import "OFDate.h"
#import "OFString.h"
#import "OFDictionary.h"
#import "OFXMLElement.h"
#ifdef OF_THREADS
# import "OFThread.h"
#endif

#import "OFInitializationFailedException.h"
#import "OFInvalidArgumentException.h"
#import "OFInvalidFormatException.h"
#import "OFOutOfRangeException.h"








|







26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#include <sys/time.h>

#import "OFDate.h"
#import "OFString.h"
#import "OFDictionary.h"
#import "OFXMLElement.h"
#ifdef OF_THREADS
# import "OFMutex.h"
#endif

#import "OFInitializationFailedException.h"
#import "OFInvalidArgumentException.h"
#import "OFInvalidFormatException.h"
#import "OFOutOfRangeException.h"

Modified src/OFTCPSocket.m from [da12c47fdd] to [c453a27f56].

54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#import "macros.h"

#ifndef INVALID_SOCKET
# define INVALID_SOCKET -1
#endif

#if defined(OF_THREADS) && !defined(HAVE_THREADSAFE_GETADDRINFO)
# import "OFThread.h"
# import "OFDataArray.h"

static OFMutex *mutex = nil;
#endif

#ifdef _WIN32
# define close(sock) closesocket(sock)







|







54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#import "macros.h"

#ifndef INVALID_SOCKET
# define INVALID_SOCKET -1
#endif

#if defined(OF_THREADS) && !defined(HAVE_THREADSAFE_GETADDRINFO)
# import "OFMutex.h"
# import "OFDataArray.h"

static OFMutex *mutex = nil;
#endif

#ifdef _WIN32
# define close(sock) closesocket(sock)