| 1753 | } |
| 1754 | |
| 1755 | virtual void* CreateHasher() { |
| 1756 | return new (GetStateAllocator().Malloc(sizeof(HasherType))) HasherType(&GetStateAllocator()); |
| 1757 | } |
| 1758 | |
| 1759 | virtual uint64_t GetHashCode(void* hasher) { |
| 1760 | return static_cast<HasherType*>(hasher)->GetHashCode(); |
no test coverage detected