Differences From Artifact [7ebbe5d5f6]:
- File src/OFASN1UTF8String.m — part of check-in [c7f0229795] at 2020-01-02 01:51:34 on branch trunk — Update copyright (user: js, size: 2650) [annotate] [blame] [check-ins using]
To Artifact [fe525c2cd3]:
- File
src/OFASN1UTF8String.m
— part of check-in
[aeb403a1ed]
at
2020-10-10 14:27:37
on branch trunk
— OFObject: Change type of -[hash] to unsigned long
The internal hash is still 32 bit in most places, but this way, it is at
least not baked into the API and ABI and can be upgraded later, should
that ever be necessary. (user: js, size: 2655) [annotate] [blame] [check-ins using] [more...]
︙ | ︙ | |||
107 108 109 110 111 112 113 | if (![UTF8String->_UTF8StringValue isEqual: _UTF8StringValue]) return false; return true; } | | | 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 | if (![UTF8String->_UTF8StringValue isEqual: _UTF8StringValue]) return false; return true; } - (unsigned long)hash { return _UTF8StringValue.hash; } - (OFString *)description { return [OFString stringWithFormat: @"<OFASN1UTF8String: %@>", |
︙ | ︙ |