ObjFW  Check-in [49f58f3edd]

Overview
Comment:Fix a comment that accidentally was documentation.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 49f58f3edd411fc6b6c490f582961f1d8a7233b28e30fc2d731c6907f265fd8a
User & Date: js on 2012-12-16 15:09:44
Other Links: manifest | tags
Context
2012-12-19
20:55
Make it possible to cancel async requests. check-in: dc7b33cd6b user: js tags: trunk
2012-12-16
15:09
Fix a comment that accidentally was documentation. check-in: 49f58f3edd user: js tags: trunk
15:04
Fix a missing exception argument. check-in: f835847243 user: js tags: trunk
Changes

Modified src/OFString_UTF8.h from [cbba34b9c4] to [95548bcd00].

15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
 */

#import "OFString.h"

@interface OFString_UTF8: OFString
{
@public
	/**
	 * A pointer to the actual data.
	 *
	 * Since constant strings don't have s_store, they have to malloc it on
	 * the first access. Strings created at runtime just set the pointer to
	 * &s_store.
	 */
	struct of_string_utf8_ivars {







|







15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
 */

#import "OFString.h"

@interface OFString_UTF8: OFString
{
@public
	/*
	 * A pointer to the actual data.
	 *
	 * Since constant strings don't have s_store, they have to malloc it on
	 * the first access. Strings created at runtime just set the pointer to
	 * &s_store.
	 */
	struct of_string_utf8_ivars {