Differences From Artifact [5c8e4572f4]:
- File src/OFCharacterSet_bitset.m — part of check-in [7c30d6a2e2] at 2017-11-05 18:01:21 on branch trunk — Add OFCharacterSet (user: js, size: 1650) [annotate] [blame] [check-ins using]
To Artifact [b3c2f2baea]:
- File src/OFCharacterSet_bitset.m — part of check-in [36607ff68e] at 2017-11-13 23:02:34 on branch trunk — OFCharacterSet_*: Make init unavailable (user: js, size: 1700) [annotate] [blame] [check-ins using]
︙ | |||
18 19 20 21 22 23 24 25 26 27 28 29 30 31 | 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | + + + + + | #import "OFCharacterSet_bitset.h" #import "OFString.h" #import "OFOutOfRangeException.h" @implementation OFCharacterSet_bitset - (instancetype)init { OF_INVALID_INIT_METHOD } - (instancetype)initWithCharactersInString: (OFString *)string { self = [super init]; @try { void *pool = objc_autoreleasePoolPush(); const of_unichar_t *characters = [string characters]; |
︙ |