| 288 | } |
| 289 | |
| 290 | bool Host::ContainsBaseSettingValue(const char* section, const char* key) |
| 291 | { |
| 292 | std::unique_lock lock(s_settings_mutex); |
| 293 | return s_layered_settings_interface.GetLayer(LayeredSettingsInterface::LAYER_BASE)->ContainsValue(section, key); |
| 294 | } |
| 295 | |
| 296 | void Host::RemoveBaseSettingValue(const char* section, const char* key) |
| 297 | { |
nothing calls this directly
no test coverage detected