ObjFW  Check-in [482454bc43]

Overview
Comment:Get rid of a strange ObjC++ + Win32 warning.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 482454bc432fa42e579b9e88b60504f00779c89b03564f9b0d8a0e1a904d545b
User & Date: js on 2013-05-13 16:46:58
Other Links: manifest | tags
Context
2013-05-22
18:42
Check for more socket-related headers / functions. check-in: 896084c340 user: js tags: trunk
2013-05-13
16:46
Get rid of a strange ObjC++ + Win32 warning. check-in: 482454bc43 user: js tags: trunk
16:21
Fix missing import. check-in: 22bcd14a08 user: js tags: trunk
Changes

Modified src/OFMD5Hash.h from [d2206bf3cb] to [fea508e8e7].

21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*!
 * @brief A class which provides functions to create an MD5 hash.
 */
@interface OFMD5Hash: OFObject <OFHash>
{
	uint32_t _buffer[4];
	uint32_t _bits[2];
	union {
		uint8_t	u8[64];
		uint32_t u32[16];
	} _in;
	bool _calculated;
}
@end







|






21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*!
 * @brief A class which provides functions to create an MD5 hash.
 */
@interface OFMD5Hash: OFObject <OFHash>
{
	uint32_t _buffer[4];
	uint32_t _bits[2];
	union of_md5hash_in_union {
		uint8_t	u8[64];
		uint32_t u32[16];
	} _in;
	bool _calculated;
}
@end