ObjFW  Check-in [4af49a13c3]

Overview
Comment:Small code style change

Casts are now written like types in variable declarations.

Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 4af49a13c3efca3420218812e4d0148c33100418421bab60129a65d6212e8c56
User & Date: js on 2017-05-07 20:10:13
Other Links: manifest | tags
Context
2017-05-07
21:16
Make -[OFHTTPRequest setBodyFromString:] nonnull check-in: 8016757def user: js tags: trunk
20:10
Small code style change check-in: 4af49a13c3 user: js tags: trunk
15:39
Do not include any addresses in -[description] check-in: 7c2a0dda3d user: js tags: trunk
Changes

Modified configure.ac from [f0dfe7a194] to [b157727f9f].

whitespace changes only

Modified generators/TableGenerator.h from [a1dab56d44] to [8a6be049f9].

whitespace changes only

Modified generators/TableGenerator.m from [ca882f1ae4] to [dca1029f28].

whitespace changes only

Modified src/OFApplication.h from [7c21208134] to [2fba27a966].

whitespace changes only

Modified src/OFApplication.m from [788679a7cf] to [f1ddeada14].

whitespace changes only

Modified src/OFArray.h from [df07e44a1f] to [824ca8afe1].

whitespace changes only

Modified src/OFArray.m from [5b8c0b589b] to [acebabe718].

whitespace changes only

Modified src/OFArray_adjacent.m from [d6653b4737] to [8a91f0e096].

whitespace changes only

Modified src/OFArray_adjacentSubarray.m from [50efd5ea53] to [d63ca8de44].

whitespace changes only

Modified src/OFArray_subarray.h from [fb06afe382] to [716934f439].

whitespace changes only

Modified src/OFArray_subarray.m from [bf40b440c5] to [b087bc3ca0].

whitespace changes only

Modified src/OFAutoreleasePool.m from [88fd4d2a1a] to [d441366c61].

whitespace changes only

Modified src/OFBigDataArray.m from [2fc9519558] to [13f7d8fe72].

whitespace changes only

Modified src/OFBlock.m from [067d5d407d] to [48fc4cece6].

67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
- retain;
- (void)release;
@end

#ifdef OF_OBJFW_RUNTIME
/* Begin of ObjC module */
static struct objc_abi_class _NSConcreteStackBlock_metaclass = {
	(struct objc_abi_class*)(void*)"OFBlock", "OFBlock", "OFStackBlock", 8,
	OBJC_CLASS_INFO_METACLASS, sizeof(struct objc_abi_class), NULL, NULL
};

struct objc_abi_class _NSConcreteStackBlock = {
	&_NSConcreteStackBlock_metaclass, "OFBlock", "OFStackBlock", 8,
	OBJC_CLASS_INFO_CLASS, sizeof(of_block_literal_t), NULL, NULL
};

static struct objc_abi_class _NSConcreteGlobalBlock_metaclass = {
	(struct objc_abi_class*)(void*)"OFBlock", "OFBlock", "OFGlobalBlock", 8,
	OBJC_CLASS_INFO_METACLASS, sizeof(struct objc_abi_class), NULL, NULL
};

struct objc_abi_class _NSConcreteGlobalBlock = {
	&_NSConcreteGlobalBlock_metaclass, "OFBlock", "OFGlobalBlock",
	8, OBJC_CLASS_INFO_CLASS, sizeof(of_block_literal_t), NULL, NULL
};

static struct objc_abi_class _NSConcreteMallocBlock_metaclass = {
	(struct objc_abi_class*)(void*)"OFBlock", "OFBlock", "OFMallocBlock", 8,
	OBJC_CLASS_INFO_METACLASS, sizeof(struct objc_abi_class), NULL, NULL
};

struct objc_abi_class _NSConcreteMallocBlock = {
	&_NSConcreteMallocBlock_metaclass, "OFBlock", "OFMallocBlock",
	8, OBJC_CLASS_INFO_CLASS, sizeof(of_block_literal_t), NULL, NULL
};








|
|



|
|



|
|








|
|







67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
- retain;
- (void)release;
@end

#ifdef OF_OBJFW_RUNTIME
/* Begin of ObjC module */
static struct objc_abi_class _NSConcreteStackBlock_metaclass = {
	(struct objc_abi_class *)(void *)"OFBlock", "OFBlock", "OFStackBlock",
	8, OBJC_CLASS_INFO_METACLASS, sizeof(struct objc_abi_class), NULL, NULL
};

struct objc_abi_class _NSConcreteStackBlock = {
	&_NSConcreteStackBlock_metaclass, "OFBlock", "OFStackBlock",
	8, OBJC_CLASS_INFO_CLASS, sizeof(of_block_literal_t), NULL, NULL
};

static struct objc_abi_class _NSConcreteGlobalBlock_metaclass = {
	(struct objc_abi_class *)(void *)"OFBlock", "OFBlock", "OFGlobalBlock",
	8, OBJC_CLASS_INFO_METACLASS, sizeof(struct objc_abi_class), NULL, NULL
};

struct objc_abi_class _NSConcreteGlobalBlock = {
	&_NSConcreteGlobalBlock_metaclass, "OFBlock", "OFGlobalBlock",
	8, OBJC_CLASS_INFO_CLASS, sizeof(of_block_literal_t), NULL, NULL
};

static struct objc_abi_class _NSConcreteMallocBlock_metaclass = {
	(struct objc_abi_class *)(void *)"OFBlock", "OFBlock", "OFMallocBlock",
	8, OBJC_CLASS_INFO_METACLASS, sizeof(struct objc_abi_class), NULL, NULL
};

struct objc_abi_class _NSConcreteMallocBlock = {
	&_NSConcreteMallocBlock_metaclass, "OFBlock", "OFMallocBlock",
	8, OBJC_CLASS_INFO_CLASS, sizeof(of_block_literal_t), NULL, NULL
};

165
166
167
168
169
170
171
172

173
174
175
176
177
178
179

	if (object_getClass((id)block) == (Class)&_NSConcreteStackBlock) {
		of_block_literal_t *copy;

		if ((copy = malloc(block->descriptor->size)) == NULL) {
			alloc_failed_exception.isa =
			    [OFAllocFailedException class];
			@throw (OFAllocFailedException*)&alloc_failed_exception;

		}
		memcpy(copy, block, block->descriptor->size);

		object_setClass((id)copy, (Class)&_NSConcreteMallocBlock);
		copy->flags++;

		if (block->flags & OF_BLOCK_HAS_COPY_DISPOSE)







|
>







165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180

	if (object_getClass((id)block) == (Class)&_NSConcreteStackBlock) {
		of_block_literal_t *copy;

		if ((copy = malloc(block->descriptor->size)) == NULL) {
			alloc_failed_exception.isa =
			    [OFAllocFailedException class];
			@throw (OFAllocFailedException *)
			    &alloc_failed_exception;
		}
		memcpy(copy, block, block->descriptor->size);

		object_setClass((id)copy, (Class)&_NSConcreteMallocBlock);
		copy->flags++;

		if (block->flags & OF_BLOCK_HAS_COPY_DISPOSE)

Modified src/OFCondition.h from [16117b4325] to [6e7cc3def8].

whitespace changes only

Modified src/OFCondition.m from [d93a5c097f] to [c3c05a120f].

whitespace changes only

Modified src/OFConstantString.m from [5483ae8a87] to [606ccc29ff].

whitespace changes only

Modified src/OFCountedSet.h from [f159833e6a] to [e7560cca06].

whitespace changes only

Modified src/OFCountedSet.m from [4d6644549a] to [08a16819c3].

whitespace changes only

Modified src/OFCountedSet_hashtable.m from [43de300ded] to [b91174aa25].

whitespace changes only

Modified src/OFCryptoHash.h from [14a9d18645] to [fb07c27325].

whitespace changes only

Modified src/OFDataArray+CryptoHashing.h from [ea6c2c832e] to [f47c276d77].

whitespace changes only

Modified src/OFDataArray+CryptoHashing.m from [093e57a2e6] to [07e9d87070].

whitespace changes only

Modified src/OFDataArray+MessagePackValue.m from [1eb966f163] to [d21c98d61f].

whitespace changes only

Modified src/OFDataArray.h from [31d759cbe2] to [dfeb1bb755].

whitespace changes only

Modified src/OFDataArray.m from [5df935f0d5] to [08874136fe].

whitespace changes only

Modified src/OFDate.h from [f57292fc57] to [7c2a95ab3f].

whitespace changes only

Modified src/OFDate.m from [7fa6b61e6d] to [7b7d9e6713].

whitespace changes only

Modified src/OFDeflateStream.h from [0d64fa32f0] to [f5d863787a].

whitespace changes only

Modified src/OFDeflateStream.m from [459199aede] to [be9beadf26].

whitespace changes only

Modified src/OFDictionary.h from [1ef115643a] to [5f2fde2cb0].

124
125
126
127
128
129
130

131
132
133
134
135
136
137
138
/*!
 * @brief Initializes an already allocated OFDictionary with the specified
 *	  OFDictionary.
 *
 * @param dictionary An OFDictionary
 * @return An initialized OFDictionary
 */

- initWithDictionary: (OFDictionary OF_GENERIC(KeyType, ObjectType)*)dictionary;

/*!
 * @brief Initializes an already allocated OFDictionary with the specified key
 *	  and object.
 *
 * @param key The key
 * @param object The object







>
|







124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
/*!
 * @brief Initializes an already allocated OFDictionary with the specified
 *	  OFDictionary.
 *
 * @param dictionary An OFDictionary
 * @return An initialized OFDictionary
 */
- initWithDictionary:
    (OFDictionary OF_GENERIC(KeyType, ObjectType) *)dictionary;

/*!
 * @brief Initializes an already allocated OFDictionary with the specified key
 *	  and object.
 *
 * @param key The key
 * @param object The object

Modified src/OFDictionary.m from [537dc67d0c] to [e4842b5166].

whitespace changes only

Modified src/OFDictionary_hashtable.m from [3138cd18bb] to [0f9f60ec04].

whitespace changes only

Modified src/OFEnumerator.h from [f1914c42af] to [e2784c6244].

whitespace changes only

Modified src/OFEnumerator.m from [9f42f95aec] to [73c62897f9].

whitespace changes only

Modified src/OFFile.h from [aa46fd0cd7] to [e4c0b1e08b].

whitespace changes only

Modified src/OFFile.m from [c9a19755a7] to [018b6789b8].

whitespace changes only

Modified src/OFFileManager.h from [85d228e919] to [89d56ff83d].

160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
			  permissions: (mode_t)permissions;
#endif

#ifdef OF_HAVE_CHOWN
/*!
 * @brief Get the owner and group of the specified item.
 *
 * @param owner A pointer to an OFString* to store the owner, or nil
 * @param group A pointer to an OFString* to store the group, or nil
 * @param path The path to the item whose owner and group should be retrieved
 */
- (void)getOwner: (OFString *__autoreleasing _Nonnull *_Nullable)owner
	   group: (OFString *__autoreleasing _Nonnull *_Nullable)group
    ofItemAtPath: (OFString*)path;

/*!







|
|







160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
			  permissions: (mode_t)permissions;
#endif

#ifdef OF_HAVE_CHOWN
/*!
 * @brief Get the owner and group of the specified item.
 *
 * @param owner A pointer to an `OFString *` to store the owner, or nil
 * @param group A pointer to an `OFString *` to store the group, or nil
 * @param path The path to the item whose owner and group should be retrieved
 */
- (void)getOwner: (OFString *__autoreleasing _Nonnull *_Nullable)owner
	   group: (OFString *__autoreleasing _Nonnull *_Nullable)group
    ofItemAtPath: (OFString*)path;

/*!

Modified src/OFFileManager.m from [6f389e5f28] to [f4973b705b].

whitespace changes only

Modified src/OFGZIPStream.h from [dc02ae5a5d] to [3b1588eaa2].

whitespace changes only

Modified src/OFGZIPStream.m from [1c958d34d5] to [e4f1e2e6e9].

whitespace changes only

Modified src/OFHMAC.h from [60c34cd9f4] to [6621f48b54].

whitespace changes only

Modified src/OFHMAC.m from [2e98081b44] to [1827be5212].

whitespace changes only

Modified src/OFHTTPClient.h from [08ff8ce82a] to [8fd8945807].

whitespace changes only

Modified src/OFHTTPClient.m from [f34d4593a1] to [8ee3bb44d0].

whitespace changes only

Modified src/OFHTTPCookie.h from [4d41b6f478] to [f54859d1ab].

whitespace changes only

Modified src/OFHTTPCookie.m from [ee6a333bc6] to [ef24e84f97].

whitespace changes only

Modified src/OFHTTPRequest.h from [116a255b13] to [f3657b719a].

whitespace changes only

Modified src/OFHTTPRequest.m from [2083545dd2] to [c7f95080da].

whitespace changes only

Modified src/OFHTTPResponse.h from [8b2b368da6] to [88ee04dd60].

whitespace changes only

Modified src/OFHTTPResponse.m from [ae2e00de64] to [b039102173].

whitespace changes only

Modified src/OFHTTPServer.h from [8ee31cc729] to [7497041027].

whitespace changes only

Modified src/OFHTTPServer.m from [84e4421360] to [6f3529bdbf].

whitespace changes only

Modified src/OFINICategory+Private.h from [ba852f9a21] to [3108b44cc4].

whitespace changes only

Modified src/OFINICategory.h from [1a4f4e7d5d] to [3e2b10c31b].

whitespace changes only

Modified src/OFINICategory.m from [6aba1314ef] to [0b4fba9171].

whitespace changes only

Modified src/OFINIFile.h from [1a37c007aa] to [233379f0e4].

whitespace changes only

Modified src/OFINIFile.m from [33a908e3eb] to [3398a352d7].

whitespace changes only

Modified src/OFIntrospection.h from [07598bfdef] to [fb7189fbfa].

whitespace changes only

Modified src/OFIntrospection.m from [3b325f542e] to [1afb80a6b9].

whitespace changes only

Modified src/OFJSONRepresentation.h from [d6d76264fc] to [e14744365e].

whitespace changes only

Modified src/OFKernelEventObserver.h from [316e90db78] to [e653f3b4a2].

whitespace changes only

Modified src/OFKernelEventObserver.m from [02536e25d0] to [687f558fe2].

131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151

152
153
154
155
156
157
158
# if !defined(OF_WII) && !defined(OF_NINTENDO_3DS)
		if (bind(_cancelFD[0], (struct sockaddr*)&_cancelAddr,
		    sizeof(_cancelAddr)) != 0)
			@throw [OFInitializationFailedException
			    exceptionWithClass: [self class]];

		cancelAddrLen = sizeof(_cancelAddr);
		if (of_getsockname(_cancelFD[0], (struct sockaddr*)&_cancelAddr,
		    &cancelAddrLen) != 0)
			@throw [OFInitializationFailedException
			    exceptionWithClass: [self class]];
# else
		for (;;) {
			uint16_t rnd = 0;
			int ret;

			while (rnd < 1024)
				rnd = (uint16_t)rand();

			_cancelAddr.sin_port = OF_BSWAP16_IF_LE(rnd);
			ret = bind(_cancelFD[0], (struct sockaddr*)&_cancelAddr,

			    sizeof(_cancelAddr));

			if (ret == 0)
				break;

			if (of_socket_errno() != EADDRINUSE)
				@throw [OFInitializationFailedException







|
|











|
>







131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
# if !defined(OF_WII) && !defined(OF_NINTENDO_3DS)
		if (bind(_cancelFD[0], (struct sockaddr*)&_cancelAddr,
		    sizeof(_cancelAddr)) != 0)
			@throw [OFInitializationFailedException
			    exceptionWithClass: [self class]];

		cancelAddrLen = sizeof(_cancelAddr);
		if (of_getsockname(_cancelFD[0],
		    (struct sockaddr *)&_cancelAddr, &cancelAddrLen) != 0)
			@throw [OFInitializationFailedException
			    exceptionWithClass: [self class]];
# else
		for (;;) {
			uint16_t rnd = 0;
			int ret;

			while (rnd < 1024)
				rnd = (uint16_t)rand();

			_cancelAddr.sin_port = OF_BSWAP16_IF_LE(rnd);
			ret = bind(_cancelFD[0],
			    (struct sockaddr *)&_cancelAddr,
			    sizeof(_cancelAddr));

			if (ret == 0)
				break;

			if (of_socket_errno() != EADDRINUSE)
				@throw [OFInitializationFailedException

Modified src/OFKernelEventObserver_epoll.m from [7c101cdbc0] to [662ee50aca].

whitespace changes only

Modified src/OFKeyValueCoding.h from [7617e632ed] to [f12732c01d].

whitespace changes only

Modified src/OFList.h from [f3204f0892] to [feabf2e6ec].

whitespace changes only

Modified src/OFList.m from [064f669702] to [e2872c89cd].

whitespace changes only

Modified src/OFLocalization.h from [5268bd2a18] to [368d40b91d].

166
167
168
169
170
171
172
173

174
175
176
177
178
179
180
 *
 * @param ID The ID for the localized string
 * @param fallback The fallback to use in case the localized string cannot be
 *		   looked up or is missing
 * @return The localized string
 */
- (OFString*)localizedStringForID: (OFConstantString*)ID
			 fallback: (OFConstantString*)fallback, ... OF_SENTINEL;


/**
 * @brief Returns the localized string for the specified ID, using the fallback
 *	  string if it cannot be looked up or is missing.
 *
 * @note This takes a variadic argument, terminated by `nil` and passed as
 *	 va_list, that consists of pairs of variable names and variable values,







|
>







166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
 *
 * @param ID The ID for the localized string
 * @param fallback The fallback to use in case the localized string cannot be
 *		   looked up or is missing
 * @return The localized string
 */
- (OFString*)localizedStringForID: (OFConstantString*)ID
			  fallback: (OFConstantString *)fallback, ...
				    OF_SENTINEL;

/**
 * @brief Returns the localized string for the specified ID, using the fallback
 *	  string if it cannot be looked up or is missing.
 *
 * @note This takes a variadic argument, terminated by `nil` and passed as
 *	 va_list, that consists of pairs of variable names and variable values,

Modified src/OFLocalization.m from [306b376984] to [39c2a63182].

whitespace changes only

Modified src/OFLocking.h from [1787b597ed] to [484f458e2d].

whitespace changes only

Modified src/OFMD5Hash.m from [43550851b7] to [003b801911].

whitespace changes only

Modified src/OFMapTable+Private.h from [075d4c6ae4] to [4526b06ac3].

whitespace changes only

Modified src/OFMapTable.h from [68e1c948c0] to [1bd4f42cb6].

whitespace changes only

Modified src/OFMapTable.m from [69937f5d0f] to [0faf59214b].

whitespace changes only

Modified src/OFMessagePackExtension.h from [386dd06c1d] to [834b809fc0].

whitespace changes only

Modified src/OFMessagePackExtension.m from [06108912c2] to [d56d43685b].

whitespace changes only

Modified src/OFMessagePackRepresentation.h from [4a497d828e] to [3af5c96964].

whitespace changes only

Modified src/OFMutableArray.h from [d3ea586b43] to [d8a00e107e].

whitespace changes only

Modified src/OFMutableArray.m from [e9c73ad6de] to [f7473af41f].

whitespace changes only

Modified src/OFMutableArray_adjacent.m from [55b87bb47c] to [6496c63550].

whitespace changes only

Modified src/OFMutableDictionary.h from [98bf6cee07] to [50af542eae].

whitespace changes only

Modified src/OFMutableDictionary.m from [8cacd80133] to [63b8a9aaca].

whitespace changes only

Modified src/OFMutableDictionary_hashtable.m from [6a515f0f03] to [57fa2b9adf].

whitespace changes only

Modified src/OFMutableSet.h from [0f0aec6a5e] to [95746eb4fa].

whitespace changes only

Modified src/OFMutableSet.m from [3bdd110505] to [be0ab30e62].

whitespace changes only

Modified src/OFMutableSet_hashtable.m from [cf2eb9bd94] to [6a9e638b4e].

whitespace changes only

Modified src/OFMutableString.h from [d140645479] to [8880ebe178].

97
98
99
100
101
102
103
104

105
106
107
108
109
110
111
112
 * @param format A format string which generates the string to append
 */
- (void)appendFormat: (OFConstantString*)format, ...;

/*!
 * @brief Appends a formatted string to the OFMutableString.
 *
 * See printf for the format syntax. As an addition, %@ is available as format

 * specifier for objects, %C for of_unichar_t and %S for const of_unichar_t*.
 *
 * @param format A format string which generates the string to append
 * @param arguments The arguments used in the format string
 */
- (void)appendFormat: (OFConstantString*)format
	   arguments: (va_list)arguments;








|
>
|







97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
 * @param format A format string which generates the string to append
 */
- (void)appendFormat: (OFConstantString*)format, ...;

/*!
 * @brief Appends a formatted string to the OFMutableString.
 *
 * See printf for the format syntax. As an addition, `%@` is available as
 * format specifier for objects, `%C` for `of_unichar_t` and `%S` for
 * `const of_unichar_t *`.
 *
 * @param format A format string which generates the string to append
 * @param arguments The arguments used in the format string
 */
- (void)appendFormat: (OFConstantString*)format
	   arguments: (va_list)arguments;

Modified src/OFMutableString.m from [3e71679146] to [8db593635a].

whitespace changes only

Modified src/OFMutableString_UTF8.m from [b3fb2f4d74] to [841b1b06a7].

whitespace changes only

Modified src/OFMutex.m from [a5b00a027c] to [fcee48ecda].

whitespace changes only

Modified src/OFNull.h from [a1cf765408] to [a98530e584].

whitespace changes only

Modified src/OFNull.m from [3b65b7b5aa] to [8d2ffd1fab].

whitespace changes only

Modified src/OFNumber.m from [5681aa0f6b] to [97313fd44a].

whitespace changes only

Modified src/OFObject+KeyValueCoding.m from [d4b85d6121] to [30955b0805].

whitespace changes only

Modified src/OFObject+Serialization.h from [befa28a78f] to [26f370712f].

whitespace changes only

Modified src/OFObject+Serialization.m from [2df11c40e9] to [7c7cd74965].

whitespace changes only

Modified src/OFObject.h from [292119d486] to [6e202ea9b1].

whitespace changes only

Modified src/OFObject.m from [3768fd3a96] to [3eb86842c6].

177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
	    &((struct pre_ivar*)instance)->retainCountSpinlock)) {
		free(instance);
		@throw [OFInitializationFailedException
		    exceptionWithClass: class];
	}
#endif

	instance = (OFObject*)((char*)instance + PRE_IVARS_ALIGN);

	memset(instance, 0, instanceSize);

	if (!objc_constructInstance(class, instance)) {
		free((char*)instance - PRE_IVARS_ALIGN);
		@throw [OFInitializationFailedException
		    exceptionWithClass: class];







|







177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
	    &((struct pre_ivar*)instance)->retainCountSpinlock)) {
		free(instance);
		@throw [OFInitializationFailedException
		    exceptionWithClass: class];
	}
#endif

	instance = (OFObject *)(void *)((char *)instance + PRE_IVARS_ALIGN);

	memset(instance, 0, instanceSize);

	if (!objc_constructInstance(class, instance)) {
		free((char*)instance - PRE_IVARS_ALIGN);
		@throw [OFInitializationFailedException
		    exceptionWithClass: class];

Modified src/OFOptionsParser.h from [06c158db08] to [faec9b2ba6].

50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
	/*!
	 * An optional pointer to a bool that is set to whether the option has
	 * been specified.
	 */
	bool *_Nullable isSpecifiedPtr;

	/*!
	 * An optional pointer to an @ref OFString* that is set to the argument
	 * specified for the option or `nil` for no argument.
	 */
	OFString *__autoreleasing _Nullable *_Nullable argumentPtr;
} of_options_parser_option_t;

/*!
 * @class OFOptionsParser OFOptionsParser.h ObjFW/OFOptionsParser.h
 *







|
|







50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
	/*!
	 * An optional pointer to a bool that is set to whether the option has
	 * been specified.
	 */
	bool *_Nullable isSpecifiedPtr;

	/*!
	 * An optional pointer to an @ref OFString * that is set to the
	 * argument specified for the option or `nil` for no argument.
	 */
	OFString *__autoreleasing _Nullable *_Nullable argumentPtr;
} of_options_parser_option_t;

/*!
 * @class OFOptionsParser OFOptionsParser.h ObjFW/OFOptionsParser.h
 *

Modified src/OFOptionsParser.m from [03713bc866] to [f1e270d342].

whitespace changes only

Modified src/OFPlugin.h from [776ab43e02] to [c055a2fd0c].

whitespace changes only

Modified src/OFPlugin.m from [c0e1766901] to [5175fba523].

whitespace changes only

Modified src/OFProcess.h from [d3d4d0056c] to [d13a85d5ee].

whitespace changes only

Modified src/OFProcess.m from [e88047c399] to [08732d57f8].

whitespace changes only

Modified src/OFRIPEMD160Hash.m from [c9c8fa689f] to [eb95ce0800].

whitespace changes only

Modified src/OFRecursiveMutex.m from [cf1fc36f57] to [5791a36f8a].

whitespace changes only

Modified src/OFRunLoop+Private.h from [e29afe9906] to [a788ecb156].

whitespace changes only

Modified src/OFRunLoop.h from [fc59a05cee] to [584523a360].

whitespace changes only

Modified src/OFRunLoop.m from [af29aae29a] to [f31ca790af].

128
129
130
131
132
133
134
135

136
137
138
139
140
141
142
143
	}

# ifdef OF_HAVE_BLOCKS
	if (_block != NULL)
		return _block(object, _buffer, length, exception);
	else {
# endif
		bool (*func)(id, SEL, OFStream*, void*, size_t, OFException*) =

		    (bool(*)(id, SEL, OFStream*, void*, size_t, OFException*))
		    [_target methodForSelector: _selector];

		return func(_target, _selector, object, _buffer, length,
		    exception);
# ifdef OF_HAVE_BLOCKS
	}
# endif







|
>
|







128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
	}

# ifdef OF_HAVE_BLOCKS
	if (_block != NULL)
		return _block(object, _buffer, length, exception);
	else {
# endif
		bool (*func)(id, SEL, OFStream *, void *, size_t,
		    OFException *) = (bool (*)(id, SEL, OFStream *, void *,
		    size_t, OFException *))
		    [_target methodForSelector: _selector];

		return func(_target, _selector, object, _buffer, length,
		    exception);
# ifdef OF_HAVE_BLOCKS
	}
# endif
178
179
180
181
182
183
184
185

186
187
188
189
190
191
192
193
		if (!_block(object, _buffer, _readLength, exception))
			return false;

		_readLength = 0;
		return true;
	} else {
# endif
		bool (*func)(id, SEL, OFStream*, void*, size_t, OFException*) =

		    (bool(*)(id, SEL, OFStream*, void*, size_t, OFException*))
		    [_target methodForSelector: _selector];

		if (!func(_target, _selector, object, _buffer, _readLength,
		    exception))
			return false;

		_readLength = 0;







|
>
|







179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
		if (!_block(object, _buffer, _readLength, exception))
			return false;

		_readLength = 0;
		return true;
	} else {
# endif
		bool (*func)(id, SEL, OFStream *, void *, size_t,
		    OFException *) = (bool (*)(id, SEL, OFStream *, void *,
		    size_t, OFException *))
		    [_target methodForSelector: _selector];

		if (!func(_target, _selector, object, _buffer, _readLength,
		    exception))
			return false;

		_readLength = 0;
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278

# ifdef OF_HAVE_BLOCKS
	if (_block != NULL)
		return _block(object, newSocket, exception);
	else {
# endif
		bool (*func)(id, SEL, OFTCPSocket*, OFTCPSocket*,
		    OFException*) =
		    (bool(*)(id, SEL, OFTCPSocket*, OFTCPSocket*, OFException*))
		    [_target methodForSelector: _selector];

		return func(_target, _selector, object, newSocket, exception);
# ifdef OF_HAVE_BLOCKS
	}
# endif
}







|
|







265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280

# ifdef OF_HAVE_BLOCKS
	if (_block != NULL)
		return _block(object, newSocket, exception);
	else {
# endif
		bool (*func)(id, SEL, OFTCPSocket*, OFTCPSocket*,
		    OFException *) = (bool (*)(id, SEL, OFTCPSocket *,
		    OFTCPSocket *, OFException *))
		    [_target methodForSelector: _selector];

		return func(_target, _selector, object, newSocket, exception);
# ifdef OF_HAVE_BLOCKS
	}
# endif
}

Modified src/OFSHA1Hash.m from [4360879e92] to [766775fc8c].

whitespace changes only

Modified src/OFSHA224Or256Hash.m from [fb3b52794b] to [07e1179a49].

whitespace changes only

Modified src/OFSHA384Or512Hash.m from [51d3c14901] to [d5b60b898c].

whitespace changes only

Modified src/OFSandbox.h from [f00e17ef0d] to [caa850467d].

whitespace changes only

Modified src/OFSandbox.m from [d7f3bcd0a9] to [3da3a171ab].

whitespace changes only

Modified src/OFSerialization.h from [e6befb1e9b] to [140cf6aa4f].

whitespace changes only

Modified src/OFSet.h from [0fe90e5221] to [48306f95d4].

whitespace changes only

Modified src/OFSet.m from [4282ae8fc5] to [62db370766].

whitespace changes only

Modified src/OFSet_hashtable.m from [2668790787] to [84c4225949].

whitespace changes only

Modified src/OFSettings.h from [da0012a76b] to [7549ee6aeb].

whitespace changes only

Modified src/OFSettings.m from [b539c0b572] to [a8dee6588b].

whitespace changes only

Modified src/OFSettings_INIFile.m from [9b36d2589e] to [4485c04494].

whitespace changes only

Modified src/OFSortedList.h from [9c95c8a311] to [8dc81e5c1a].

whitespace changes only

Modified src/OFSortedList.m from [dace74b703] to [5ca59cf2d2].

whitespace changes only

Modified src/OFStdIOStream.h from [529708bf9f] to [a701818e89].

whitespace changes only

Modified src/OFStdIOStream.m from [ed72626b27] to [5324fa0d07].

whitespace changes only

Modified src/OFStdIOStream_Win32Console.m from [7220727656] to [7f3fc13f71].

whitespace changes only

Modified src/OFStream.h from [a07511dad6] to [dce22ba2cb].

1019
1020
1021
1022
1023
1024
1025
1026

1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037

1038
1039
1040
1041
1042
1043
1044
1045
 */
- (size_t)writeLine: (OFString*)string
	   encoding: (of_string_encoding_t)encoding;

/*!
 * @brief Writes a formatted string into the stream.
 *
 * See printf for the format syntax. As an addition, %@ is available as format

 * specifier for objects, %C for of_unichar_t and %S for const of_unichar_t*.
 *
 * @param format A string used as format
 * @return The number of bytes written
 */
- (size_t)writeFormat: (OFConstantString*)format, ...;

/*!
 * @brief Writes a formatted string into the stream.
 *
 * See printf for the format syntax. As an addition, %@ is available as format

 * specifier for objects, %C for of_unichar_t and %S for const of_unichar_t*.
 *
 * @param format A string used as format
 * @param arguments The arguments used in the format string
 * @return The number of bytes written
 */
- (size_t)writeFormat: (OFConstantString*)format
	    arguments: (va_list)arguments;







|
>
|









|
>
|







1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
 */
- (size_t)writeLine: (OFString*)string
	   encoding: (of_string_encoding_t)encoding;

/*!
 * @brief Writes a formatted string into the stream.
 *
 * See printf for the format syntax. As an addition, `%@` is available as
 * format specifier for objects, `%C` for `of_unichar_t` and `%S` for
 * `const of_unichar_t *`.
 *
 * @param format A string used as format
 * @return The number of bytes written
 */
- (size_t)writeFormat: (OFConstantString*)format, ...;

/*!
 * @brief Writes a formatted string into the stream.
 *
 * See printf for the format syntax. As an addition, `%@` is available as
 * format specifier for objects, `%C` for `of_unichar_t` and `%S` for
 * `const of_unichar_t *`.
 *
 * @param format A string used as format
 * @param arguments The arguments used in the format string
 * @return The number of bytes written
 */
- (size_t)writeFormat: (OFConstantString*)format
	    arguments: (va_list)arguments;

Modified src/OFStream.m from [553fc37056] to [257a9e5027].

whitespace changes only

Modified src/OFStreamSocket.m from [196ec0c55f] to [d2e763431e].

whitespace changes only

Modified src/OFString+CryptoHashing.h from [3e61516736] to [f63a3a4a9b].

whitespace changes only

Modified src/OFString+CryptoHashing.m from [2a2048b5b4] to [78fa704049].

whitespace changes only

Modified src/OFString+JSONValue.m from [0b6aa35b67] to [44a7ffa4d7].

whitespace changes only

Modified src/OFString+URLEncoding.h from [37eb93561c] to [f16f9f6de1].

whitespace changes only

Modified src/OFString+URLEncoding.m from [cdac934c1e] to [9ad96294d0].

whitespace changes only

Modified src/OFString+XMLEscaping.h from [9d40a596c2] to [54cf47bc37].

whitespace changes only

Modified src/OFString+XMLEscaping.m from [a7d3ecc291] to [64cd2d1eac].

whitespace changes only

Modified src/OFString+XMLUnescaping.h from [80508f23b4] to [0f77351c40].

whitespace changes only

Modified src/OFString+XMLUnescaping.m from [743856ba0d] to [d6e6b667b8].

whitespace changes only

Modified src/OFString.h from [df25fe3eba] to [1f9f9bd1d3].

277
278
279
280
281
282
283
284

285
286
287
288
289
290
291
292
+ (instancetype)stringWithUTF32String: (const of_char32_t*)string
			       length: (size_t)length
			    byteOrder: (of_byte_order_t)byteOrder;

/*!
 * @brief Creates a new OFString from a format string.
 *
 * See printf for the format syntax. As an addition, %@ is available as format

 * specifier for objects, %C for of_unichar_t and %S for const of_unichar_t*.
 *
 * @param format A string used as format to initialize the OFString
 * @return A new autoreleased OFString
 */
+ (instancetype)stringWithFormat: (OFConstantString*)format, ...;

#ifdef OF_HAVE_FILES







|
>
|







277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
+ (instancetype)stringWithUTF32String: (const of_char32_t*)string
			       length: (size_t)length
			    byteOrder: (of_byte_order_t)byteOrder;

/*!
 * @brief Creates a new OFString from a format string.
 *
 * See printf for the format syntax. As an addition, `%@` is available as
 * format specifier for objects, `%C` for `of_unichar_t` and `%S` for
 * `const of_unichar_t *`.
 *
 * @param format A string used as format to initialize the OFString
 * @return A new autoreleased OFString
 */
+ (instancetype)stringWithFormat: (OFConstantString*)format, ...;

#ifdef OF_HAVE_FILES
510
511
512
513
514
515
516
517

518
519
520
521
522
523
524
525
526
527
528

529
530
531
532
533
534
535
536
- initWithUTF32String: (const of_char32_t*)string
	       length: (size_t)length
	    byteOrder: (of_byte_order_t)byteOrder;

/*!
 * @brief Initializes an already allocated OFString with a format string.
 *
 * See printf for the format syntax. As an addition, %@ is available as format

 * specifier for objects, %C for of_unichar_t and %S for const of_unichar_t*.
 *
 * @param format A string used as format to initialize the OFString
 * @return An initialized OFString
 */
- initWithFormat: (OFConstantString*)format, ...;

/*!
 * @brief Initializes an already allocated OFString with a format string.
 *
 * See printf for the format syntax. As an addition, %@ is available as format

 * specifier for objects, %C for of_unichar_t and %S for const of_unichar_t*.
 *
 * @param format A string used as format to initialize the OFString
 * @param arguments The arguments used in the format string
 * @return An initialized OFString
 */
- initWithFormat: (OFConstantString*)format
       arguments: (va_list)arguments;







|
>
|









|
>
|







511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
- initWithUTF32String: (const of_char32_t*)string
	       length: (size_t)length
	    byteOrder: (of_byte_order_t)byteOrder;

/*!
 * @brief Initializes an already allocated OFString with a format string.
 *
 * See printf for the format syntax. As an addition, `%@` is available as
 * format specifier for objects, `%C` for `of_unichar_t` and `%S` for
 * `const of_unichar_t *`.
 *
 * @param format A string used as format to initialize the OFString
 * @return An initialized OFString
 */
- initWithFormat: (OFConstantString*)format, ...;

/*!
 * @brief Initializes an already allocated OFString with a format string.
 *
 * See printf for the format syntax. As an addition, `%@` is available as
 * format specifier for objects, `%C` for `of_unichar_t` and `%S` for
 * `const of_unichar_t *`.
 *
 * @param format A string used as format to initialize the OFString
 * @param arguments The arguments used in the format string
 * @return An initialized OFString
 */
- initWithFormat: (OFConstantString*)format
       arguments: (va_list)arguments;

Modified src/OFString.m from [bfc8b98fd1] to [e0471f5f58].

whitespace changes only

Modified src/OFString_UTF8+Private.h from [b08263a07b] to [94d042b3cd].

whitespace changes only

Modified src/OFString_UTF8.h from [cbab9106f7] to [27665fb3c4].

whitespace changes only

Modified src/OFString_UTF8.m from [961145e2e1] to [fc310b0712].

whitespace changes only

Modified src/OFSystemInfo.h from [318b983834] to [e8b6bc242b].

whitespace changes only

Modified src/OFSystemInfo.m from [3184c9a0c5] to [2dfc0a82b8].

whitespace changes only

Modified src/OFTCPSocket+SOCKS5.h from [a70c21b56b] to [615516372e].

whitespace changes only

Modified src/OFTCPSocket+SOCKS5.m from [8e795b494e] to [c2070c1b40].

whitespace changes only

Modified src/OFTCPSocket.h from [7e829b3ab1] to [a9d0cd2fee].

whitespace changes only

Modified src/OFTCPSocket.m from [f234be8d33] to [c7187f1cc0].

whitespace changes only

Modified src/OFTLSSocket.h from [b87af1f574] to [27187de68b].

whitespace changes only

Modified src/OFTarArchive.h from [2ef22f87ee] to [f202a7f964].

whitespace changes only

Modified src/OFTarArchive.m from [ffe423de16] to [ef68919153].

whitespace changes only

Modified src/OFTarArchiveEntry+Private.h from [5f38226781] to [6ecc8476c9].

whitespace changes only

Modified src/OFTarArchiveEntry.m from [4e294b0368] to [c0d69369d6].

whitespace changes only

Modified src/OFThread.h from [5cd28cdb35] to [04bcc49824].

whitespace changes only

Modified src/OFThread.m from [44538b1550] to [a839633991].

whitespace changes only

Modified src/OFThreadPool.m from [f68a86f2dd] to [04406d7334].

whitespace changes only

Modified src/OFTimer.h from [6a8324c7be] to [8072cf7aa4].

whitespace changes only

Modified src/OFTimer.m from [14c8339812] to [abb68d10aa].

whitespace changes only

Modified src/OFUDPSocket.h from [087ce7f471] to [05fb60ba2c].

148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
			     block: (of_udp_socket_async_resolve_block_t)block;
# endif
#endif

/*!
 * @brief Gets the host and port for the specified address.
 *
 * @param host A pointer to an OFString*. If it is not NULL, it will be set to
 *	       the host of the host / port pair.
 * @param port A pointer to an uint16_t. If it is not NULL, the port of the
 *	       host / port pair will be written to it.
 * @param address The address for which the host and port should be retrieved
 */
+ (void)getHost: (OFString *__autoreleasing _Nonnull *_Nullable)host
	andPort: (uint16_t *_Nullable)port
     forAddress: (of_udp_socket_address_t*)address;







|
|







148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
			     block: (of_udp_socket_async_resolve_block_t)block;
# endif
#endif

/*!
 * @brief Gets the host and port for the specified address.
 *
 * @param host A pointer to an @ref OFString *. If it is not NULL, it will be
 *	       set to the host of the host / port pair.
 * @param port A pointer to an uint16_t. If it is not NULL, the port of the
 *	       host / port pair will be written to it.
 * @param address The address for which the host and port should be retrieved
 */
+ (void)getHost: (OFString *__autoreleasing _Nonnull *_Nullable)host
	andPort: (uint16_t *_Nullable)port
     forAddress: (of_udp_socket_address_t*)address;

Modified src/OFUDPSocket.m from [7e2210cd91] to [f67659d08d].

whitespace changes only

Modified src/OFURL.h from [336f088c44] to [de5ad4004e].

whitespace changes only

Modified src/OFURL.m from [9669ae9920] to [b76d8bb1be].

whitespace changes only

Modified src/OFXMLAttribute.h from [3c807a0561] to [2122e7a8be].

whitespace changes only

Modified src/OFXMLAttribute.m from [c87ea13e1e] to [08b89a1a1d].

whitespace changes only

Modified src/OFXMLCDATA.h from [304bae9f03] to [db549733cc].

whitespace changes only

Modified src/OFXMLCDATA.m from [4599ccf7bf] to [710869577e].

whitespace changes only

Modified src/OFXMLCharacters.h from [e8d5ddfaa4] to [c3eee8f6e8].

whitespace changes only

Modified src/OFXMLCharacters.m from [28531794c6] to [6b9ad84ac8].

whitespace changes only

Modified src/OFXMLComment.h from [2461477eef] to [bbf17f1ff7].

whitespace changes only

Modified src/OFXMLComment.m from [abbf99f0c2] to [3ef625ba5d].

whitespace changes only

Modified src/OFXMLElement.h from [1f4a21c910] to [246cb3356f].

401
402
403
404
405
406
407
408

409
410
411
412
413
414
415

/*!
 * @brief Returns the child elements with the specified name.
 *
 * @param elementName The name of the elements
 * @return The child elements with the specified name
 */
- (OFArray OF_GENERIC(OFXMLElement*)*)elementsForName: (OFString*)elementName;


/*!
 * @brief Returns the first child element with the specified name and namespace.
 *
 * @param elementName The name of the element
 * @param elementNS The namespace of the element
 * @return The first child element with the specified name and namespace







|
>







401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416

/*!
 * @brief Returns the child elements with the specified name.
 *
 * @param elementName The name of the elements
 * @return The child elements with the specified name
 */
- (OFArray OF_GENERIC(OFXMLElement *) *)elementsForName:
    (OFString *)elementName;

/*!
 * @brief Returns the first child element with the specified name and namespace.
 *
 * @param elementName The name of the element
 * @param elementNS The namespace of the element
 * @return The first child element with the specified name and namespace

Modified src/OFXMLElement.m from [1e9e755319] to [919c1667cd].

whitespace changes only

Modified src/OFXMLElementBuilder.h from [ae237ad96d] to [123ad23954].

whitespace changes only

Modified src/OFXMLElementBuilder.m from [7a305bddbd] to [8f1f7d2342].

whitespace changes only

Modified src/OFXMLNode.h from [ffe6f2a2b2] to [a5851a48bd].

whitespace changes only

Modified src/OFXMLNode.m from [4a9dbfcb4a] to [d0fa412fe1].

whitespace changes only

Modified src/OFXMLParser.h from [c42e8d4f95] to [cd9a216dbc].

whitespace changes only

Modified src/OFXMLParser.m from [3771da0801] to [829d513f17].

whitespace changes only

Modified src/OFXMLProcessingInstructions.h from [9c168a002a] to [5d805de72a].

whitespace changes only

Modified src/OFXMLProcessingInstructions.m from [65c42678b7] to [dd195c67f8].

whitespace changes only

Modified src/OFZIPArchive.h from [f0d277203d] to [490d5f93ce].

whitespace changes only

Modified src/OFZIPArchive.m from [16b7ebc50b] to [df3e45938b].

whitespace changes only

Modified src/OFZIPArchiveEntry+Private.h from [94e173a584] to [aa6cbb3cc6].

whitespace changes only

Modified src/OFZIPArchiveEntry.h from [51727c4cd0] to [860be1e03d].

whitespace changes only

Modified src/OFZIPArchiveEntry.m from [75090f7155] to [7d2a571c32].

whitespace changes only

Modified src/atomic_no_threads.h from [3924fe3a37] to [152148fa91].

whitespace changes only

Modified src/atomic_osatomic.h from [7e5dffc102] to [4f277f9764].

whitespace changes only

Modified src/atomic_powerpc.h from [56d99bc409] to [1547de0695].

whitespace changes only

Modified src/atomic_sync_builtins.h from [b3ae278d63] to [228897fe83].

whitespace changes only

Modified src/atomic_x86.h from [7c455e67f3] to [1b998b9efc].

whitespace changes only

Modified src/autorelease.h from [d57fd73d90] to [208b8e102b].

whitespace changes only

Modified src/autorelease.m from [1e49675760] to [bf8548a62d].

whitespace changes only

Modified src/base64.h from [1b98b68ead] to [187615e668].

whitespace changes only

Modified src/base64.m from [214663ac89] to [1b4e200414].

whitespace changes only

Modified src/block.h from [735c685469] to [9d0c7b51a6].

47
48
49
50
51
52
53
54

55
56
57
58
59
60
61
 * Clang has implicit declarations for these, but they are dllimport. When
 * compiling ObjFW itself, these need to be dllexport.
 */
extern __declspec(dllexport) struct objc_abi_class _NSConcreteStackBlock;
extern __declspec(dllexport) struct objc_abi_class _NSConcreteGlobalBlock;
extern __declspec(dllexport) void _Block_object_assign(void*, const void*,
    const int);
extern __declspec(dllexport) void _Block_object_dispose(const void*, const int);

# endif
#ifdef __cplusplus
}
#endif

#ifndef Block_copy
# define Block_copy(...) \







|
>







47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
 * Clang has implicit declarations for these, but they are dllimport. When
 * compiling ObjFW itself, these need to be dllexport.
 */
extern __declspec(dllexport) struct objc_abi_class _NSConcreteStackBlock;
extern __declspec(dllexport) struct objc_abi_class _NSConcreteGlobalBlock;
extern __declspec(dllexport) void _Block_object_assign(void*, const void*,
    const int);
extern __declspec(dllexport) void _Block_object_dispose(const void *,
    const int);
# endif
#ifdef __cplusplus
}
#endif

#ifndef Block_copy
# define Block_copy(...) \

Modified src/bridge/NSArray_OFArray.h from [58defe4ba5] to [8bde2d37be].

whitespace changes only

Modified src/bridge/NSArray_OFArray.m from [cba0f47bb2] to [ab0fe4a97d].

whitespace changes only

Modified src/bridge/NSDictionary_OFDictionary.h from [c7b6c32d51] to [57ff64c5b6].

whitespace changes only

Modified src/bridge/NSDictionary_OFDictionary.m from [7efb530341] to [8917cda49a].

whitespace changes only

Modified src/bridge/OFArray_NSArray.h from [44f8cea25c] to [ff8b9d8260].

whitespace changes only

Modified src/bridge/OFArray_NSArray.m from [b5d4fd1d10] to [94ceef5c3f].

whitespace changes only

Modified src/bridge/OFDictionary_NSDictionary.h from [4f087176a3] to [bc29657cbb].

whitespace changes only

Modified src/bridge/OFDictionary_NSDictionary.m from [38c430eb6b] to [8b7a3db643].

whitespace changes only

Modified src/exceptions/OFAcceptFailedException.m from [11a91dcb56] to [3dce4b47ac].

whitespace changes only

Modified src/exceptions/OFAddressTranslationFailedException.h from [2e4d1739ad] to [254e69058d].

whitespace changes only

Modified src/exceptions/OFAddressTranslationFailedException.m from [eb706ff06f] to [b3820ad5f4].

whitespace changes only

Modified src/exceptions/OFAllocFailedException.h from [4100b2fe9e] to [adf82e28da].

whitespace changes only

Modified src/exceptions/OFAllocFailedException.m from [6b2c31fa22] to [3f54c3ecda].

whitespace changes only

Modified src/exceptions/OFAlreadyConnectedException.m from [975e60fb76] to [e64bcd1baf].

whitespace changes only

Modified src/exceptions/OFBindFailedException.h from [c2c0f94e68] to [533b445442].

whitespace changes only

Modified src/exceptions/OFBindFailedException.m from [54991134ed] to [e0e0543c8b].

whitespace changes only

Modified src/exceptions/OFChangeCurrentDirectoryPathFailedException.h from [93572132e5] to [9414640136].

whitespace changes only

Modified src/exceptions/OFChangeCurrentDirectoryPathFailedException.m from [6a0c2056fa] to [2d31d2e850].

whitespace changes only

Modified src/exceptions/OFChangeOwnerFailedException.h from [b287da5fe9] to [4b057b44b4].

whitespace changes only

Modified src/exceptions/OFChangeOwnerFailedException.m from [c1acdcd0f7] to [a981279a06].

whitespace changes only

Modified src/exceptions/OFChangePermissionsFailedException.h from [0f5d5d06cd] to [4969272a62].

whitespace changes only

Modified src/exceptions/OFChangePermissionsFailedException.m from [f51299aa20] to [b3ab971426].

whitespace changes only

Modified src/exceptions/OFChecksumFailedException.m from [195b33d7d2] to [9e360e89d7].

whitespace changes only

Modified src/exceptions/OFConditionBroadcastFailedException.h from [437194a4ea] to [bec42f7089].

whitespace changes only

Modified src/exceptions/OFConditionBroadcastFailedException.m from [025e3341b0] to [b1afbaa1c2].

whitespace changes only

Modified src/exceptions/OFConditionSignalFailedException.h from [39b1e11cca] to [98ff55faa5].

whitespace changes only

Modified src/exceptions/OFConditionSignalFailedException.m from [ed61ab5b51] to [f8777a8229].

whitespace changes only

Modified src/exceptions/OFConditionStillWaitingException.h from [3b236e57e8] to [8ebf47ac72].

whitespace changes only

Modified src/exceptions/OFConditionStillWaitingException.m from [6747f3c524] to [ec957ebffb].

whitespace changes only

Modified src/exceptions/OFConditionWaitFailedException.h from [509f0c4160] to [09e764d0e9].

whitespace changes only

Modified src/exceptions/OFConditionWaitFailedException.m from [71f9cc7f2e] to [d191ac48bf].

whitespace changes only

Modified src/exceptions/OFConnectionFailedException.h from [1c78b42463] to [da0c71c6e8].

whitespace changes only

Modified src/exceptions/OFConnectionFailedException.m from [8b464d6b37] to [6e3b6ce290].

whitespace changes only

Modified src/exceptions/OFCopyItemFailedException.h from [3689d773a6] to [46a6589334].

whitespace changes only

Modified src/exceptions/OFCopyItemFailedException.m from [69d065156f] to [4db34f034e].

whitespace changes only

Modified src/exceptions/OFCreateDirectoryFailedException.h from [ceed172fa5] to [0aeac91f5f].

whitespace changes only

Modified src/exceptions/OFCreateDirectoryFailedException.m from [8f9bca9236] to [ac18aba803].

whitespace changes only

Modified src/exceptions/OFCreateSymbolicLinkFailedException.h from [0d686e2861] to [57208c7e32].

whitespace changes only

Modified src/exceptions/OFCreateSymbolicLinkFailedException.m from [3c148de5f6] to [2ef5f721b8].

whitespace changes only

Modified src/exceptions/OFEnumerationMutationException.m from [b84dce21cd] to [8fcf852c28].

whitespace changes only

Modified src/exceptions/OFException.h from [c5510791b2] to [4f8a3eb7a0].

whitespace changes only

Modified src/exceptions/OFException.m from [8fabc728f2] to [0b126c90fd].

77
78
79
80
81
82
83
84

85
86
87
88
89
90
91
};

extern _Unwind_Reason_Code _Unwind_Backtrace(
    _Unwind_Reason_Code(*)(struct _Unwind_Context*, void*), void*);
# ifndef HAVE_ARM_EHABI_EXCEPTIONS
extern uintptr_t _Unwind_GetIP(struct _Unwind_Context*);
# else
extern int _Unwind_VRS_Get(struct _Unwind_Context*, int, uint32_t, int, void*);

# endif
#endif

#if !defined(HAVE_STRERROR_R) && defined(OF_HAVE_THREADS)
static of_mutex_t mutex;

OF_CONSTRUCTOR()







|
>







77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
};

extern _Unwind_Reason_Code _Unwind_Backtrace(
    _Unwind_Reason_Code(*)(struct _Unwind_Context*, void*), void*);
# ifndef HAVE_ARM_EHABI_EXCEPTIONS
extern uintptr_t _Unwind_GetIP(struct _Unwind_Context*);
# else
extern int _Unwind_VRS_Get(struct _Unwind_Context *, int, uint32_t, int,
    void *);
# endif
#endif

#if !defined(HAVE_STRERROR_R) && defined(OF_HAVE_THREADS)
static of_mutex_t mutex;

OF_CONSTRUCTOR()

Modified src/exceptions/OFGetOptionFailedException.h from [be9a0844ee] to [fa09b15fcb].

whitespace changes only

Modified src/exceptions/OFGetOptionFailedException.m from [345844c106] to [e981c51f46].

whitespace changes only

Modified src/exceptions/OFHTTPRequestFailedException.h from [40f50e7dcf] to [1c80228554].

whitespace changes only

Modified src/exceptions/OFHTTPRequestFailedException.m from [64833ce62b] to [057b189e49].

whitespace changes only

Modified src/exceptions/OFHashAlreadyCalculatedException.m from [eb2edfffd8] to [8cb0db74ba].

whitespace changes only

Modified src/exceptions/OFInitializationFailedException.m from [43347ab5a7] to [ba889780e2].

whitespace changes only

Modified src/exceptions/OFInvalidArgumentException.m from [39fc972cd6] to [1f482687a4].

whitespace changes only

Modified src/exceptions/OFInvalidEncodingException.m from [ee5034e1e3] to [f8e0dbcc4e].

whitespace changes only

Modified src/exceptions/OFInvalidFormatException.m from [ca5337e1a5] to [0f9113584d].

whitespace changes only

Modified src/exceptions/OFInvalidJSONException.h from [3515e6b03e] to [7f5296b3be].

whitespace changes only

Modified src/exceptions/OFInvalidJSONException.m from [07d0c99f72] to [fff3723ab2].

whitespace changes only

Modified src/exceptions/OFInvalidServerReplyException.m from [9775fd5471] to [3aa3e7a152].

whitespace changes only

Modified src/exceptions/OFLinkFailedException.h from [330c1ca862] to [447f9c2dc0].

whitespace changes only

Modified src/exceptions/OFLinkFailedException.m from [22b0d59c65] to [ec984119f3].

whitespace changes only

Modified src/exceptions/OFListenFailedException.m from [50635a2fc6] to [68088da6a3].

whitespace changes only

Modified src/exceptions/OFLockFailedException.m from [c4b871bd29] to [cdfa88a638].

whitespace changes only

Modified src/exceptions/OFMalformedXMLException.h from [969464470b] to [63ec37adb1].

whitespace changes only

Modified src/exceptions/OFMalformedXMLException.m from [d00b6e0bb4] to [d7fbc3fc45].

whitespace changes only

Modified src/exceptions/OFMemoryNotPartOfObjectException.h from [e71e1b14f0] to [63c9dc8e41].

whitespace changes only

Modified src/exceptions/OFMemoryNotPartOfObjectException.m from [0b7ef4c480] to [b8b6e69018].

whitespace changes only

Modified src/exceptions/OFMoveItemFailedException.h from [220654d393] to [02563e9d4c].

whitespace changes only

Modified src/exceptions/OFMoveItemFailedException.m from [aaaad6a4f1] to [fa7b0f3804].

whitespace changes only

Modified src/exceptions/OFNotImplementedException.m from [ed856a0deb] to [37412f6538].

whitespace changes only

Modified src/exceptions/OFNotOpenException.m from [b3c92769c2] to [80096a1857].

whitespace changes only

Modified src/exceptions/OFObserveFailedException.h from [032d2564af] to [1a6c8ec6c9].

whitespace changes only

Modified src/exceptions/OFObserveFailedException.m from [47e61e26c4] to [23af32b8f2].

whitespace changes only

Modified src/exceptions/OFOpenItemFailedException.h from [7e4d67733e] to [b39007397c].

whitespace changes only

Modified src/exceptions/OFOpenItemFailedException.m from [4c0e145a1c] to [7244bfb39e].

whitespace changes only

Modified src/exceptions/OFOutOfMemoryException.m from [6bb162b64c] to [7cb2b989ab].

whitespace changes only

Modified src/exceptions/OFOutOfRangeException.m from [9f20a6032d] to [fe616e607b].

whitespace changes only

Modified src/exceptions/OFReadFailedException.m from [b465546e7d] to [afe0beee73].

whitespace changes only

Modified src/exceptions/OFReadOrWriteFailedException.m from [a4c5d2c02e] to [cf55ce6afb].

whitespace changes only

Modified src/exceptions/OFRemoveItemFailedException.h from [69fce99bc1] to [4041699ca7].

whitespace changes only

Modified src/exceptions/OFRemoveItemFailedException.m from [1914700cdc] to [a7ff1e04ee].

whitespace changes only

Modified src/exceptions/OFSandboxActivationFailedException.h from [b24879b2d6] to [a9acd16049].

whitespace changes only

Modified src/exceptions/OFSandboxActivationFailedException.m from [1e4f886387] to [a66044aa59].

whitespace changes only

Modified src/exceptions/OFSeekFailedException.h from [1e5a86504e] to [b3ad469847].

whitespace changes only

Modified src/exceptions/OFSeekFailedException.m from [1eb0d20455] to [00e16809f3].

whitespace changes only

Modified src/exceptions/OFSetOptionFailedException.h from [7844ba8833] to [4fba02e1a0].

whitespace changes only

Modified src/exceptions/OFSetOptionFailedException.m from [454f1fd9ab] to [50bd99831b].

whitespace changes only

Modified src/exceptions/OFStatItemFailedException.h from [34fa416e50] to [c430472e6c].

whitespace changes only

Modified src/exceptions/OFStatItemFailedException.m from [19703146d5] to [ffd210e74b].

whitespace changes only

Modified src/exceptions/OFStillLockedException.m from [91b0b01b3c] to [af438cc6c1].

whitespace changes only

Modified src/exceptions/OFThreadJoinFailedException.h from [45c508a2e4] to [2bb131ccb4].

whitespace changes only

Modified src/exceptions/OFThreadJoinFailedException.m from [c4c229f651] to [f8db38d484].

whitespace changes only

Modified src/exceptions/OFThreadStartFailedException.h from [1927c7649a] to [df2070febe].

whitespace changes only

Modified src/exceptions/OFThreadStartFailedException.m from [ab02e3a892] to [a98d20539d].

whitespace changes only

Modified src/exceptions/OFThreadStillRunningException.h from [d5d503dfe2] to [6ad8b75800].

whitespace changes only

Modified src/exceptions/OFThreadStillRunningException.m from [7f6b444bcd] to [c688f113b8].

whitespace changes only

Modified src/exceptions/OFTruncatedDataException.m from [9a0b5ba873] to [b0b9afa776].

whitespace changes only

Modified src/exceptions/OFUnboundNamespaceException.h from [b5af7ca552] to [fce75de0fe].

whitespace changes only

Modified src/exceptions/OFUnboundNamespaceException.m from [67dd861578] to [62bea9dc90].

whitespace changes only

Modified src/exceptions/OFUnboundPrefixException.h from [85076c578b] to [8b87f7d166].

whitespace changes only

Modified src/exceptions/OFUnboundPrefixException.m from [e44ccf7144] to [eea8d45e3d].

whitespace changes only

Modified src/exceptions/OFUndefinedKeyException.h from [a2963e0e91] to [f6db7d17ce].

whitespace changes only

Modified src/exceptions/OFUndefinedKeyException.m from [3df049e465] to [d7d9dee998].

whitespace changes only

Modified src/exceptions/OFUnknownXMLEntityException.h from [5738d0e30e] to [f1e9896ef6].

whitespace changes only

Modified src/exceptions/OFUnknownXMLEntityException.m from [806dd9465e] to [0c33db3e95].

whitespace changes only

Modified src/exceptions/OFUnlockFailedException.m from [eaf81e8b6a] to [ebd625dff3].

whitespace changes only

Modified src/exceptions/OFUnsupportedProtocolException.m from [e8d73cf6b5] to [c9e247cc3c].

19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#import "OFUnsupportedProtocolException.h"
#import "OFString.h"
#import "OFURL.h"

@implementation OFUnsupportedProtocolException
@synthesize URL = _URL;

+ (instancetype)exceptionWithURL: (OFURL*)url
{
	return [[[self alloc] initWithURL: url] autorelease];
}

- init
{
	OF_INVALID_INIT_METHOD
}








|

|







19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#import "OFUnsupportedProtocolException.h"
#import "OFString.h"
#import "OFURL.h"

@implementation OFUnsupportedProtocolException
@synthesize URL = _URL;

+ (instancetype)exceptionWithURL: (OFURL *)URL
{
	return [[[self alloc] initWithURL: URL] autorelease];
}

- init
{
	OF_INVALID_INIT_METHOD
}

Modified src/exceptions/OFUnsupportedVersionException.h from [b5d4712496] to [bc3b738b3c].

whitespace changes only

Modified src/exceptions/OFUnsupportedVersionException.m from [3cc78a8ad0] to [ec312f72f0].

whitespace changes only

Modified src/exceptions/OFWriteFailedException.m from [0575bc984b] to [c720bc4acd].

whitespace changes only

Modified src/instance.h from [69b1191150] to [0671acd0b4].

whitespace changes only

Modified src/instance.m from [995026f596] to [dcb3da3872].

whitespace changes only

Modified src/macros.h from [acbe9b9b4a] to [4c5e15ca2a].

whitespace changes only

Modified src/of_asprintf.m from [eefc8c03cc] to [dfdbe062d8].

623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
		tmpLen = asprintf(&tmp, ctx->subformat,
		    va_arg(ctx->arguments, void*));

		break;
	case 'n':
		switch (ctx->lengthModifier) {
		case LENGTH_MODIFIER_NONE:
			*va_arg(ctx->arguments, int*) =
			    (int)ctx->bufferLen;
			break;
		case LENGTH_MODIFIER_HH:
			*va_arg(ctx->arguments, signed char*) =
			    (signed char)ctx->bufferLen;
			break;
		case LENGTH_MODIFIER_H:
			*va_arg(ctx->arguments, short*) =







|
<







623
624
625
626
627
628
629
630

631
632
633
634
635
636
637
		tmpLen = asprintf(&tmp, ctx->subformat,
		    va_arg(ctx->arguments, void*));

		break;
	case 'n':
		switch (ctx->lengthModifier) {
		case LENGTH_MODIFIER_NONE:
			*va_arg(ctx->arguments, int *) = (int)ctx->bufferLen;

			break;
		case LENGTH_MODIFIER_HH:
			*va_arg(ctx->arguments, signed char*) =
			    (signed char)ctx->bufferLen;
			break;
		case LENGTH_MODIFIER_H:
			*va_arg(ctx->arguments, short*) =

Modified src/of_strptime.h from [564125a9eb] to [6dafa57dc4].

26
27
28
29
30
31
32
33
34
35
36
37
38
39
#import "macros.h"

OF_ASSUME_NONNULL_BEGIN

#ifdef __cplusplus
extern "C" {
#endif
extern const char* of_strptime(const char*, const char*,
    struct tm *tm, int16_t *tz);
#ifdef __cplusplus
}
#endif

OF_ASSUME_NONNULL_END







|






26
27
28
29
30
31
32
33
34
35
36
37
38
39
#import "macros.h"

OF_ASSUME_NONNULL_BEGIN

#ifdef __cplusplus
extern "C" {
#endif
extern const char *of_strptime(const char *buf, const char *fmt,
    struct tm *tm, int16_t *tz);
#ifdef __cplusplus
}
#endif

OF_ASSUME_NONNULL_END

Modified src/of_strptime.m from [9c609e758d] to [0c80605e9d].

whitespace changes only

Modified src/resolver.h from [27e1b81eb2] to [d006d1407a].

53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
    uint16_t port, int protocol);

/*!
 * @brief Converts the specified address to a string and port pair.
 *
 * @param address The address to convert to a string
 * @param addressLength The length of the address to convert to a string
 * @param host A pointer to an OFString* which should be set to the host of the
 *	       address or NULL if the host is not needed
 * @param port A pointer to an uint16_t which should be set to the port of the
 *	       address or NULL if the port is not needed
 */
extern void of_address_to_string_and_port(struct sockaddr *address,
    socklen_t addressLength,
    OFString *__autoreleasing _Nonnull *_Nullable host,
    uint16_t *_Nullable port);







|
|







53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
    uint16_t port, int protocol);

/*!
 * @brief Converts the specified address to a string and port pair.
 *
 * @param address The address to convert to a string
 * @param addressLength The length of the address to convert to a string
 * @param host A pointer to an @ref OFString * which should be set to the host
 *	       of the address or NULL if the host is not needed
 * @param port A pointer to an uint16_t which should be set to the port of the
 *	       address or NULL if the port is not needed
 */
extern void of_address_to_string_and_port(struct sockaddr *address,
    socklen_t addressLength,
    OFString *__autoreleasing _Nonnull *_Nullable host,
    uint16_t *_Nullable port);

Modified src/resolver.m from [e5254d8f80] to [1e35fdb00e].

whitespace changes only

Modified src/runtime/arc.m from [120ac4ff9d] to [ae0f383c89].

whitespace changes only

Modified src/runtime/category.m from [4388419943] to [768ffeb962].

whitespace changes only

Modified src/runtime/class.m from [a5e62b6d57] to [bb8140f5e4].

whitespace changes only

Modified src/runtime/dtable.m from [4412ed5617] to [6f5c36ea25].

whitespace changes only

Modified src/runtime/exception.m from [bff9221b2d] to [9516bed461].

112
113
114
115
116
117
118

119
120
121
122
123
124
125
126
	_URC_CONTINUE_UNWIND	= 8,
	_URC_FAILURE		= 9
} _Unwind_Reason_Code;

struct objc_exception {
	struct _Unwind_Exception {
		uint64_t class;

		void (*cleanup)(_Unwind_Reason_Code, struct _Unwind_Exception*);
#ifndef HAVE_ARM_EHABI_EXCEPTIONS
# ifndef HAVE_SEH_EXCEPTIONS
		/*
		 * The Itanium Exception ABI says to have those and never touch
		 * them.
		 */
		uint64_t private1, private2;







>
|







112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
	_URC_CONTINUE_UNWIND	= 8,
	_URC_FAILURE		= 9
} _Unwind_Reason_Code;

struct objc_exception {
	struct _Unwind_Exception {
		uint64_t class;
		void (*cleanup)(
		    _Unwind_Reason_Code, struct _Unwind_Exception *);
#ifndef HAVE_ARM_EHABI_EXCEPTIONS
# ifndef HAVE_SEH_EXCEPTIONS
		/*
		 * The Itanium Exception ABI says to have those and never touch
		 * them.
		 */
		uint64_t private1, private2;
177
178
179
180
181
182
183
184

185

186
187
188
189
190
191
192

extern uintptr_t _Unwind_GetIP(struct _Unwind_Context*);
extern void _Unwind_SetIP(struct _Unwind_Context*, uintptr_t);
extern void _Unwind_SetGR(struct _Unwind_Context*, int, uintptr_t);
#else
extern _Unwind_Reason_Code __gnu_unwind_frame(struct _Unwind_Exception*,
    struct _Unwind_Context*);
extern int _Unwind_VRS_Get(struct _Unwind_Context*, int, uint32_t, int, void*);

extern int _Unwind_VRS_Set(struct _Unwind_Context*, int, uint32_t, int, void*);


# define CONTINUE_UNWIND					\
	{							\
		if (__gnu_unwind_frame(ex, ctx) != _URC_OK)	\
			return _URC_FAILURE;			\
								\
		return _URC_CONTINUE_UNWIND;			\







|
>
|
>







178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195

extern uintptr_t _Unwind_GetIP(struct _Unwind_Context*);
extern void _Unwind_SetIP(struct _Unwind_Context*, uintptr_t);
extern void _Unwind_SetGR(struct _Unwind_Context*, int, uintptr_t);
#else
extern _Unwind_Reason_Code __gnu_unwind_frame(struct _Unwind_Exception*,
    struct _Unwind_Context*);
extern int _Unwind_VRS_Get(struct _Unwind_Context *, int, uint32_t, int,
    void *);
extern int _Unwind_VRS_Set(struct _Unwind_Context *, int, uint32_t, int,
    void *);

# define CONTINUE_UNWIND					\
	{							\
		if (__gnu_unwind_frame(ex, ctx) != _URC_OK)	\
			return _URC_FAILURE;			\
								\
		return _URC_CONTINUE_UNWIND;			\

Modified src/runtime/hashtable.m from [38fe5a0cfe] to [8166d9c683].

whitespace changes only

Modified src/runtime/property.m from [79dd5a258d] to [f610db3f7e].

whitespace changes only

Modified src/runtime/protocol.m from [6bd4883458] to [a6710fd48b].

whitespace changes only

Modified src/runtime/runtime-private.h from [8959ceec24] to [a994a21929].

whitespace changes only

Modified src/runtime/runtime.h from [35cbcdf16d] to [bd21f431a6].

whitespace changes only

Modified src/runtime/selector.m from [b4065297e3] to [57debffc40].

whitespace changes only

Modified src/runtime/sparsearray.m from [4c093ce050] to [5adec15068].

whitespace changes only

Modified src/runtime/static-instances.m from [ef2f011243] to [e637d2916b].

whitespace changes only

Modified src/scrypt.m from [cb91073b60] to [41ace0d09a].

whitespace changes only

Modified src/socket.m from [798d29602d] to [c5f416940a].

59
60
61
62
63
64
65
66
67
68
69
70
71
72
73

	if ((ctx = memalign(0x1000, 0x100000)) == NULL)
		return;

	if (socInit(ctx, 0x100000) != 0)
		return;

	atexit((void(*))socExit);
#endif

#ifdef OF_HAVE_THREADS
	if (!of_mutex_new(&mutex))
		return;

# ifdef OF_WII







|







59
60
61
62
63
64
65
66
67
68
69
70
71
72
73

	if ((ctx = memalign(0x1000, 0x100000)) == NULL)
		return;

	if (socInit(ctx, 0x100000) != 0)
		return;

	atexit((void (*)(void))socExit);
#endif

#ifdef OF_HAVE_THREADS
	if (!of_mutex_new(&mutex))
		return;

# ifdef OF_WII

Modified src/threading.h from [774a47eec4] to [f3dd04ca64].

whitespace changes only

Modified src/threading.m from [df2361523e] to [47e6377b9c].

whitespace changes only

Modified src/threading_pthread.m from [430c90cbfe] to [9d56adf88b].

whitespace changes only

Modified src/threading_winapi.m from [0dde3aa656] to [f624bdcb51].

whitespace changes only

Modified tests/ForwardingTests.m from [fc741f89e7] to [cf2379237f].

whitespace changes only

Modified tests/OFArrayTests.m from [c99073b249] to [9dfa280d32].

whitespace changes only

Modified tests/OFDataArrayTests.m from [07c61622f6] to [bcbf5eac2f].

whitespace changes only

Modified tests/OFDictionaryTests.m from [6cb38442bb] to [b05d0d80fb].

whitespace changes only

Modified tests/OFKernelEventObserverTests.m from [26a483d9d8] to [f2b6e225cb].

whitespace changes only

Modified tests/OFStreamTests.m from [d45edb3a8c] to [ef2c49709d].

whitespace changes only

Modified tests/OFStringTests.m from [c38d6eca4f] to [1397ae7a5c].

whitespace changes only

Modified tests/OFXMLElementBuilderTests.m from [93fff9b69c] to [edaf2396cf].

whitespace changes only

Modified tests/OFXMLParserTests.m from [b4df7e9977] to [278894d6bc].

whitespace changes only

Modified tests/PBKDF2Tests.m from [1a9b926561] to [7976571f99].

whitespace changes only

Modified tests/ScryptTests.m from [c36f9bdb93] to [1b8de25397].

whitespace changes only

Modified tests/TestsAppDelegate.h from [59f0e48189] to [3fcd3b5e9a].

whitespace changes only

Modified tests/TestsAppDelegate.m from [fb941f8116] to [5233b264a3].

whitespace changes only

Modified utils/ofhash/OFHash.m from [edd9d8236f] to [7a5a5d9642].

whitespace changes only

Modified utils/ofhttp/OFHTTP.m from [9d1be742e3] to [fd3994865b].

825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
			}
		} else
			lengthString =
			    OF_LOCALIZED(@"size_unknown", @"unknown");

		if (_verbose) {
			void *pool = objc_autoreleasePoolPush();
			OFDictionary OF_GENERIC(OFString*, OFString*) *headers =
			    [response headers];
			OFEnumerator *keyEnumerator = [headers keyEnumerator];
			OFEnumerator *objectEnumerator =
			    [headers objectEnumerator];
			OFString *key, *object;

			[of_stdout writeString: @"  "];
			[of_stdout writeLine: OF_LOCALIZED(







|
|







825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
			}
		} else
			lengthString =
			    OF_LOCALIZED(@"size_unknown", @"unknown");

		if (_verbose) {
			void *pool = objc_autoreleasePoolPush();
			OFDictionary OF_GENERIC(OFString *, OFString *)
			    *headers = [response headers];
			OFEnumerator *keyEnumerator = [headers keyEnumerator];
			OFEnumerator *objectEnumerator =
			    [headers objectEnumerator];
			OFString *key, *object;

			[of_stdout writeString: @"  "];
			[of_stdout writeLine: OF_LOCALIZED(

Modified utils/ofzip/Archive.h from [d56995be03] to [9f8454bed8].

whitespace changes only

Modified utils/ofzip/GZIPArchive.m from [0352ca14b6] to [b72f242916].

whitespace changes only

Modified utils/ofzip/OFZIP.h from [50af7478a6] to [13ab30e52b].

whitespace changes only

Modified utils/ofzip/OFZIP.m from [fee5d710b7] to [be1781ac4e].

whitespace changes only

Modified utils/ofzip/TarArchive.m from [de5d10a91b] to [fe3cb3604c].

whitespace changes only

Modified utils/ofzip/ZIPArchive.m from [d50f922fb2] to [75562dbfa9].

whitespace changes only