| 499 | } |
| 500 | |
| 501 | cmValue cmCacheManager::GetInitializedCacheValue(std::string const& key) const |
| 502 | { |
| 503 | if (auto const* entry = this->GetCacheEntry(key)) { |
| 504 | if (entry->Initialized) { |
| 505 | return cmValue(entry->GetValue()); |
| 506 | } |
| 507 | } |
| 508 | return nullptr; |
| 509 | } |
| 510 | |
| 511 | void cmCacheManager::PrintCache(std::ostream& out) const |
| 512 | { |
no test coverage detected