ObjFW  Diff

Differences From Artifact [360a62d844]:

To Artifact [162f4f232a]:


672
673
674
675
676
677
678
679
680
681
682




683
684
685
686
687
688
689
672
673
674
675
676
677
678




679
680
681
682
683
684
685
686
687
688
689







-
-
-
-
+
+
+
+







		[self release];
		@throw e;
	}

	abort();
}

- OF_initWithMapTable: (OFMapTable*)mapTable
	      buckets: (struct of_map_table_bucket**)buckets
	     capacity: (uint32_t)capacity
     mutationsPointer: (unsigned long*)mutationsPtr
- (instancetype)OF_initWithMapTable: (OFMapTable*)mapTable
			    buckets: (struct of_map_table_bucket**)buckets
			   capacity: (uint32_t)capacity
		   mutationsPointer: (unsigned long*)mutationsPtr
{
	self = [super init];

	_mapTable = [mapTable retain];
	_buckets = buckets;
	_capacity = capacity;
	_mutations = *mutationsPtr;