| 211 | |
| 212 | struct StrHashPred { |
| 213 | __forceinline size_t operator() ( const StrHashEntry & a ) const { |
| 214 | return (size_t) hash_block64((const uint8_t *)a.ptr, a.length); |
| 215 | } |
| 216 | }; |
| 217 | |
| 218 | class Context; |
nothing calls this directly
no test coverage detected