| 157 | } |
| 158 | |
| 159 | std::string cmState::GetSafeCacheEntryValue(std::string const& key) const |
| 160 | { |
| 161 | if (cmValue val = this->GetCacheEntryValue(key)) { |
| 162 | return *val; |
| 163 | } |
| 164 | return std::string(); |
| 165 | } |
| 166 | |
| 167 | cmValue cmState::GetInitializedCacheValue(std::string const& key) const |
| 168 | { |
no test coverage detected