| 133 | } |
| 134 | |
| 135 | void SetCacheEntryBoolProperty(std::string const& key, |
| 136 | std::string const& propName, bool value) |
| 137 | { |
| 138 | if (auto* entry = this->GetCacheEntry(key)) { |
| 139 | entry->SetProperty(propName, value); |
| 140 | } |
| 141 | } |
| 142 | |
| 143 | void RemoveCacheEntryProperty(std::string const& key, |
| 144 | std::string const& propName) |
nothing calls this directly
no test coverage detected