ObjFW  Diff

Differences From Artifact [bc1f7945d5]:

To Artifact [5e6091e296]:


14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
 * file.
 */

#import "OFDictionary.h"

struct of_dictionary_hashtable_bucket
{
	id <OFCopying> key;
	id object;
	uint32_t hash;
};

@interface OFDictionary_hashtable: OFDictionary
{
	struct of_dictionary_hashtable_bucket **data;
	uint32_t size;







<
|







14
15
16
17
18
19
20

21
22
23
24
25
26
27
28
 * file.
 */

#import "OFDictionary.h"

struct of_dictionary_hashtable_bucket
{

	id key, object;
	uint32_t hash;
};

@interface OFDictionary_hashtable: OFDictionary
{
	struct of_dictionary_hashtable_bucket **data;
	uint32_t size;