ObjFW  Check-in [52efbc4b8f]

Overview
Comment:Add a missing (instancetype).
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 52efbc4b8ff5a726015f18e1387ffc2a6e39114435056ad1218db4066142102b
User & Date: js on 2013-10-29 09:37:14
Other Links: manifest | tags
Context
2013-10-29
09:55
PLATFORMS.md: Add x86_64 to OpenBSD, 10.9 to OS X. check-in: c45bc07d2d user: js tags: trunk
09:37
Add a missing (instancetype). check-in: 52efbc4b8f user: js tags: trunk
2013-10-28
15:18
Update Xcode project to 5.0. check-in: ed3a954968 user: js tags: trunk
Changes

Modified src/OFMapTable.m from [1f413086d9] to [08236d7fb2].

64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
@interface OFMapTable (OF_PRIVATE_CATEGORY)
- (void)OF_setValue: (void*)value
	     forKey: (void*)key
	       hash: (uint32_t)hash;
@end

@interface OFMapTableEnumerator (OF_PRIVATE_CATEGORY)
- OF_initWithMapTable: (OFMapTable*)mapTable
	      buckets: (struct of_map_table_bucket**)buckets
	     capacity: (uint32_t)capacity
     mutationsPointer: (unsigned long*)mutationsPtr;
@end

@interface OFMapTableKeyEnumerator: OFMapTableEnumerator
@end

@interface OFMapTableValueEnumerator: OFMapTableEnumerator
@end







|
|
|
|







64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
@interface OFMapTable (OF_PRIVATE_CATEGORY)
- (void)OF_setValue: (void*)value
	     forKey: (void*)key
	       hash: (uint32_t)hash;
@end

@interface OFMapTableEnumerator (OF_PRIVATE_CATEGORY)
- (instancetype)OF_initWithMapTable: (OFMapTable*)mapTable
			    buckets: (struct of_map_table_bucket**)buckets
			   capacity: (uint32_t)capacity
		   mutationsPointer: (unsigned long*)mutationsPtr;
@end

@interface OFMapTableKeyEnumerator: OFMapTableEnumerator
@end

@interface OFMapTableValueEnumerator: OFMapTableEnumerator
@end