ObjFW  Diff

Differences From Artifact [88ef3a2c1c]:

To Artifact [914a225e3e]:


265
266
267
268
269
270
271
272
273


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


272
273

274
275
276
277
278
279
280







-
-
+
+
-







		    elementForName: @"microseconds"
			 namespace: OF_SERIALIZATION_NS];

		if (secondsElement == nil || microsecondsElement == nil)
			@throw [OFInvalidArgumentException newWithClass: isa
							       selector: _cmd];

		seconds = (int64_t)[[secondsElement stringValue] decimalValue];
		microseconds =
		seconds = (int64_t)[secondsElement decimalValue];
		microseconds = (uint32_t)[microsecondsElement decimalValue];
		    (uint32_t)[[microsecondsElement stringValue] decimalValue];

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