ObjFW  Check-in [a5b3cd8cce]

Overview
Comment:Fix missing #ifdef in ObjFW.h
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: a5b3cd8cce814f0867b3fee5590441a95193bc5ca6985903b77f81ba0b287173
User & Date: js on 2024-11-04 00:11:50
Other Links: manifest | tags
Context
2024-11-04
00:19
Don't call into C++ EH personality on 68k AmigaOS check-in: 4763da1d8d user: js tags: trunk
00:11
Fix missing #ifdef in ObjFW.h check-in: a5b3cd8cce user: js tags: trunk
00:10
Fix compiling ObjC++ on Windows check-in: 5e5ca921cb user: js tags: trunk
Changes

Modified src/ObjFW.h from [5fa2f17ff8] to [700d623d15].

154
155
156
157
158
159
160

161

162
163
164
165
166
167
168
#ifdef OF_WINDOWS
# import "OFWindowsRegistryKey.h"
#endif

#import "OFAllocFailedException.h"
#import "OFAlreadyOpenException.h"
#import "OFException.h"

#import "OFChangeCurrentDirectoryFailedException.h"

#import "OFChecksumMismatchException.h"
#import "OFCopyItemFailedException.h"
#import "OFCreateDirectoryFailedException.h"
#import "OFCreateSymbolicLinkFailedException.h"
#import "OFEnumerationMutationException.h"
#ifdef OF_HAVE_FILES
# import "OFGetCurrentDirectoryFailedException.h"







>
|
>







154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
#ifdef OF_WINDOWS
# import "OFWindowsRegistryKey.h"
#endif

#import "OFAllocFailedException.h"
#import "OFAlreadyOpenException.h"
#import "OFException.h"
#ifdef OF_HAVE_FILES
# import "OFChangeCurrentDirectoryFailedException.h"
#endif
#import "OFChecksumMismatchException.h"
#import "OFCopyItemFailedException.h"
#import "OFCreateDirectoryFailedException.h"
#import "OFCreateSymbolicLinkFailedException.h"
#import "OFEnumerationMutationException.h"
#ifdef OF_HAVE_FILES
# import "OFGetCurrentDirectoryFailedException.h"