----------------- HashString::Set hash the string and register it in the DB in non shipping builds
| 100 | // hash the string and register it in the DB in non shipping builds |
| 101 | // |
| 102 | void HashString::Set(char const* const source) |
| 103 | { |
| 104 | m_Hash = GetHash(source); |
| 105 | |
| 106 | #if ET_HASH_STRING_ENABLED |
| 107 | s_GlobalHashStringRegistry->Register(m_Hash, source); |
| 108 | #endif |
| 109 | } |
| 110 | |
| 111 | |
| 112 | // debug |