| 479 | } |
| 480 | |
| 481 | cmCacheManager::CacheEntry* cmCacheManager::GetCacheEntry( |
| 482 | std::string const& key) |
| 483 | { |
| 484 | auto i = this->Cache.find(key); |
| 485 | if (i != this->Cache.end()) { |
| 486 | return &i->second; |
| 487 | } |
| 488 | return nullptr; |
| 489 | } |
| 490 | |
| 491 | cmCacheManager::CacheEntry const* cmCacheManager::GetCacheEntry( |
| 492 | std::string const& key) const |
no test coverage detected