ObjFW  Check-in [0ab4647723]

Overview
Comment:Minor style fix
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 0ab464772351909cd6b8c50c482b22c368ced7445b672d3398e44f17a789ddf1
User & Date: js on 2024-08-24 20:02:30
Other Links: manifest | tags
Context
2024-08-24
22:19
OFString: Fix converting from some encodings check-in: d6a8d57148 user: js tags: trunk
20:02
Minor style fix check-in: 0ab4647723 user: js tags: trunk
10:39
OFINIFile: Allow # for comments check-in: 16ebc2d82a user: js tags: trunk
Changes

Modified src/OFString.m from [5717f82639] to [8acc3c73fe].

1481
1482
1483
1484
1485
1486
1487
1488

1489
1490
1491
1492
1493
1494
1495
1496
1481
1482
1483
1484
1485
1486
1487

1488

1489
1490
1491
1492
1493
1494
1495







-
+
-







}

- (OFUnichar)characterAtIndex: (size_t)idx
{
	OF_UNRECOGNIZED_SELECTOR
}

- (void)getCharacters: (OFUnichar *)buffer
- (void)getCharacters: (OFUnichar *)buffer inRange: (OFRange)range
	      inRange: (OFRange)range
{
	for (size_t i = 0; i < range.length; i++)
		buffer[i] = [self characterAtIndex: range.location + i];
}

- (bool)isEqual: (id)object
{