| 1294 | } |
| 1295 | |
| 1296 | int dictObjKeyCompare(void *privdata, const void *key1, |
| 1297 | const void *key2) |
| 1298 | { |
| 1299 | const robj *o1 = key1, *o2 = key2; |
| 1300 | return dictSdsKeyCompare(privdata,o1->ptr,o2->ptr); |
| 1301 | } |
| 1302 | |
| 1303 | uint64_t dictObjHash(const void *key) { |
| 1304 | const robj *o = key; |
nothing calls this directly
no test coverage detected