ObjFW  Diff

Differences From Artifact [aa9496cc90]:

To Artifact [c654921311]:


345
346
347
348
349
350
351

352

353
354
355
356
357
358
359
345
346
347
348
349
350
351
352

353
354
355
356
357
358
359
360







+
-
+







			uint64_t u;
		} d;

		if (![element.name isEqual: self.className] ||
		    ![element.namespace isEqual: OF_SERIALIZATION_NS])
			@throw [OFInvalidArgumentException exception];

		d.u = (uint64_t)element.hexadecimalValue;
		d.u = OF_BSWAP64_IF_LE((uint64_t)element.hexadecimalValue);
		d.u = OF_BSWAP64_IF_LE(d.u);
		_seconds = OF_BSWAP_DOUBLE_IF_LE(d.d);

		objc_autoreleasePoolPop(pool);
	} @catch (id e) {
		[self release];
		@throw e;
	}