ObjFW  Check-in [3dc09e8fac]

Overview
Comment:Fix a missing const in tests.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 3dc09e8fac5ef099a652d80d3288c2cd66fc41af988368b76eeee2f8f5113e6f
User & Date: js on 2011-10-31 21:19:44
Other Links: manifest | tags
Context
2011-10-31
21:20
Don't prepend a BOM when using -[unicodeString]. check-in: dcf50eb53a user: js tags: trunk
21:19
Fix a missing const in tests. check-in: 3dc09e8fac user: js tags: trunk
21:18
Move placeholder interfaces from headers to implementation files.
This way they are not public anymore.
check-in: 6bdb2e4b01 user: js tags: trunk
Changes

Modified tests/OFStringTests.m from [3eba69945b] to [9f38334afc].

69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
@implementation TestsAppDelegate (OFStringTests)
- (void)stringTests
{
	OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init];
	OFMutableString *s[3];
	OFArray *a;
	int i;
	of_unichar_t *ua;
	EntityHandler *h;
#ifdef OF_HAVE_BLOCKS
	__block BOOL ok;
#endif

	s[0] = [OFMutableString stringWithString: @"täs€"];
	s[1] = [OFMutableString string];







|







69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
@implementation TestsAppDelegate (OFStringTests)
- (void)stringTests
{
	OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init];
	OFMutableString *s[3];
	OFArray *a;
	int i;
	const of_unichar_t *ua;
	EntityHandler *h;
#ifdef OF_HAVE_BLOCKS
	__block BOOL ok;
#endif

	s[0] = [OFMutableString stringWithString: @"täs€"];
	s[1] = [OFMutableString string];