| 131 | } |
| 132 | |
| 133 | static unsigned int hash_oid_string(const struct object_id *oid, |
| 134 | const char *string) |
| 135 | { |
| 136 | return memhash(oid->hash, the_hash_algo->rawsz) + strhash(string); |
| 137 | } |
| 138 | |
| 139 | static void cache_put_path(struct submodule_cache *cache, |
| 140 | struct submodule *submodule) |
no test coverage detected