ObjFW  Diff

Differences From Artifact [36beda4104]:

To Artifact [d9ed74f314]:


382
383
384
385
386
387
388
389
390


391
392
393
394
395
396
397

398
399
400
401
402
403
404
405


406
407
408
409
410
411
412
382
383
384
385
386
387
388


389
390
391
392
393
394
395
396

397
398
399
400
401
402
403


404
405
406
407
408
409
410
411
412







-
-
+
+






-
+






-
-
+
+








- (void*)allocMemoryWithSize: (size_t)size
{
	@throw [OFNotImplementedException exceptionWithClass: isa
						    selector: _cmd];
}

- (void*)allocMemoryForNItems: (size_t)nitems
		     withSize: (size_t)size
- (void*)allocMemoryWithSize: (size_t)size
		       count: (size_t)count
{
	@throw [OFNotImplementedException exceptionWithClass: isa
						    selector: _cmd];
}

- (void*)resizeMemory: (void*)ptr
	       toSize: (size_t)size
		 size: (size_t)size
{
	@throw [OFNotImplementedException exceptionWithClass: isa
						    selector: _cmd];
}

- (void*)resizeMemory: (void*)ptr
	     toNItems: (size_t)nitems
	     withSize: (size_t)size
		 size: (size_t)size
		count: (size_t)count
{
	@throw [OFNotImplementedException exceptionWithClass: isa
						    selector: _cmd];
}

- (void)freeMemory: (void*)ptr
{