| 74 | cmValue GetInitializedCacheValue(std::string const& key) const; |
| 75 | |
| 76 | cmValue GetCacheEntryValue(std::string const& key) const |
| 77 | { |
| 78 | if (auto const* entry = this->GetCacheEntry(key)) { |
| 79 | return cmValue(entry->GetValue()); |
| 80 | } |
| 81 | return nullptr; |
| 82 | } |
| 83 | |
| 84 | void SetCacheEntryValue(std::string const& key, std::string const& value) |
| 85 | { |
nothing calls this directly
no test coverage detected