Differences From Artifact [e562e52fa7]:
- File src/map.c — part of check-in [d4d333ba7f] at 2012-04-22 13:19:15 on branch trunk — Let the iter point to the first object. (user: js, size: 7899) [annotate] [blame] [check-ins using]
To Artifact [c5e3bf3b39]:
- File src/map.c — part of check-in [ceb7a22af1] at 2012-04-25 09:22:42 on branch trunk — ISO C forbids empty initializer braces. (user: js, size: 7914) [annotate] [blame] [check-ins using]
︙ | |||
29 30 31 32 33 34 35 | 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | - + | #include "object.h" #include "map.h" #include "hash.h" static struct bucket { CFWObject *key, *obj; uint32_t hash; |
︙ |