--------------------------------- HashStringRegistry::DbgPrintAll
| 67 | // HashStringRegistry::DbgPrintAll |
| 68 | // |
| 69 | void HashStringRegistry::DbgPrintAll() const |
| 70 | { |
| 71 | LOG(""); |
| 72 | LOG("Cached hashes:"); |
| 73 | |
| 74 | for (std::pair<T_Hash const, std::string> const& pair : m_RegisteredHashes) |
| 75 | { |
| 76 | LOG(FS("\t[%u] - '%s'", pair.first, pair.second.c_str())); |
| 77 | } |
| 78 | } |
| 79 | |
| 80 | //------------------------------- |
| 81 | // HashStringRegistry::GetString |
nothing calls this directly
no outgoing calls
no test coverage detected