ObjFW  Check-in [0cc973c595]

Overview
Comment:OFMapTable: Fix type mismatch on OFHashSeed
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | 1.0
Files: files | file ages | folders
SHA3-256: 0cc973c595ccd95f272a46e51c71f1d8f59a9ca097e9e515516451d5fb35d690
User & Date: js on 2024-02-12 19:55:52
Other Links: branch diff | manifest | tags
Context
2024-02-13
21:13
Fix -[OFDictionary initWithKey:arguments:] check-in: 3b6f5b8030 user: js tags: 1.0
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-03
11:41
Update copyright check-in: 7324ec8590 user: js tags: 1.0
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;
};