| 203 | } |
| 204 | |
| 205 | const UopFileEntry *CUopMappedFile::GetAsset(uint64_t hash) const |
| 206 | { |
| 207 | auto found = m_MapByHash.find(hash); |
| 208 | if (found != m_MapByHash.end()) |
| 209 | { |
| 210 | return found->second; |
| 211 | } |
| 212 | |
| 213 | return nullptr; |
| 214 | } |
| 215 | |
| 216 | const UopFileEntry *CUopMappedFile::GetAsset(const char *filename) const |
| 217 | { |
no test coverage detected