ObjFW  Check-in [bff1f8e5a7]

Overview
Comment:Make GCC happy by declaring private methods.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: bff1f8e5a795d073ae89baca390dc6ed11c79cb2d885f3ddf37cf659f96b6773
User & Date: js on 2012-12-07 02:11:22
Other Links: manifest | tags
Context
2012-12-07
13:57
Revert several OFHashMap related commits. check-in: 6712442fad user: js tags: trunk
02:11
Make GCC happy by declaring private methods. check-in: bff1f8e5a7 user: js tags: trunk
2012-12-06
21:17
Fix Clang warnings and a typo. check-in: 31d023e401 user: js tags: trunk
Changes

Modified src/OFDictionary_hashtable.h from [ccd33ce597] to [1d1ac9a544].

19
20
21
22
23
24
25


26
@class OFMapTable;
@class OFMapTableEnumerator;

@interface OFDictionary_hashtable: OFDictionary
{
	OFMapTable *mapTable;
}


@end







>
>

19
20
21
22
23
24
25
26
27
28
@class OFMapTable;
@class OFMapTableEnumerator;

@interface OFDictionary_hashtable: OFDictionary
{
	OFMapTable *mapTable;
}

- initWithCapacity: (size_t)capacity;
@end

Modified src/OFSet_hashtable.h from [b2ed28094e] to [e772038da3].

18
19
20
21
22
23
24


25

@class OFMapTable;

@interface OFSet_hashtable: OFSet
{
	OFMapTable *mapTable;
}


@end







>
>

18
19
20
21
22
23
24
25
26
27

@class OFMapTable;

@interface OFSet_hashtable: OFSet
{
	OFMapTable *mapTable;
}

- initWithCapacity: (size_t)capacity;
@end