| 8 | #include "decorate.h" |
| 9 | |
| 10 | static unsigned int hash_obj(const struct object *obj, unsigned int n) |
| 11 | { |
| 12 | return oidhash(&obj->oid) % n; |
| 13 | } |
| 14 | |
| 15 | static void *insert_decoration(struct decoration *n, const struct object *base, void *decoration) |
| 16 | { |
no test coverage detected