Differences From Artifact [a3c8b1ddd3]:
- File src/bridge/NSDictionary_OFDictionary.m — part of check-in [0509d7a844] at 2019-01-03 19:13:03 on branch trunk — Update copyright (user: js, size: 1471) [annotate] [blame] [check-ins using]
To Artifact [d509c1b2b1]:
- File src/bridge/NSDictionary_OFDictionary.m — part of check-in [bceb7ed4c9] at 2019-03-08 00:35:48 on branch trunk — Use dot syntax (user: js, size: 1469) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
50 51 52 53 54 55 56 | return [object NSObject]; return object; } - (NSUInteger)count { | | | 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | return [object NSObject]; return object; } - (NSUInteger)count { size_t count = _dictionary.count; if (count > NSUIntegerMax) @throw [OFOutOfRangeException exception]; return (NSUInteger)count; } @end |