Differences From Artifact [a4b014ae97]:
- File
src/OFSet_hashtable.m
— part of check-in
[2a27cf3000]
at
2016-01-03 00:41:26
on branch trunk
— Update copyright
While at it, also update the mail address. (user: js, size: 5660) [annotate] [blame] [check-ins using]
To Artifact [97b4c86e48]:
- File src/OFSet_hashtable.m — part of check-in [e0b9167693] at 2016-02-21 15:37:42 on branch trunk — Make use of C99-style for loops (user: js, size: 5654) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
141 142 143 144 145 146 147 | - initWithObjects: (id const*)objects count: (size_t)count { self = [self initWithCapacity: count]; @try { | < < | | 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 | - initWithObjects: (id const*)objects count: (size_t)count { self = [self initWithCapacity: count]; @try { for (size_t i = 0; i < count; i++) [_mapTable setValue: (void*)1 forKey: objects[i]]; } @catch (id e) { [self release]; @throw e; } |
︙ | ︙ |