ObjFW  Check-in [26ea8fefec]

Overview
Comment:OFMapTable: Fix type mismatch on OFHashSeed
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 26ea8fefec370819d1de6bbce486f4c873c546894d3505e4175191e575743f71
User & Date: js on 2024-02-12 19:55:33
Other Links: manifest | tags
Context
2024-02-13
21:12
Fix -[OFDictionary initWithKey:arguments:] check-in: bd1040a3aa user: js tags: trunk
2024-02-12
19:55
OFMapTable: Fix type mismatch on OFHashSeed check-in: 0cc973c595 user: js tags: 1.0
19:55
OFMapTable: Fix type mismatch on OFHashSeed check-in: 26ea8fefec user: js tags: trunk
2024-02-11
15:18
ObjFWTest: Use more, even nicer colors check-in: 6186d3b518 user: js tags: trunk
Changes

Modified src/OFMapTable.m from [810b88a011] to [3e827255d3].

24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#import "OFMapTable+Private.h"
#import "OFEnumerator.h"

#import "OFEnumerationMutationException.h"
#import "OFInvalidArgumentException.h"
#import "OFOutOfRangeException.h"

extern uint32_t OFHashSeed;

static const uint32_t minCapacity = 16;

struct OFMapTableBucket {
	void *key, *object;
	uint32_t hash;
};







|







24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#import "OFMapTable+Private.h"
#import "OFEnumerator.h"

#import "OFEnumerationMutationException.h"
#import "OFInvalidArgumentException.h"
#import "OFOutOfRangeException.h"

extern unsigned long OFHashSeed;

static const uint32_t minCapacity = 16;

struct OFMapTableBucket {
	void *key, *object;
	uint32_t hash;
};