| 422 | static bool UseMurmur; |
| 423 | |
| 424 | struct Entry |
| 425 | { |
| 426 | const char * StringPtrs[10]; |
| 427 | Entry * Next; |
| 428 | uint32_t StringPtrItems; |
| 429 | uint32_t Unused; |
| 430 | |
| 431 | uint32_t Count() const; |
| 432 | char const * Get(uint32_t i) const; |
| 433 | }; |
| 434 | |
| 435 | Entry HashTable[65521]; |
| 436 |
nothing calls this directly
no outgoing calls
no test coverage detected