| 281 | } |
| 282 | |
| 283 | bool Host::RemoveBaseValueFromStringList(const char* section, const char* key, const char* value) |
| 284 | { |
| 285 | std::unique_lock lock(s_settings_mutex); |
| 286 | return s_layered_settings_interface.GetLayer(LayeredSettingsInterface::LAYER_BASE) |
| 287 | ->RemoveFromStringList(section, key, value); |
| 288 | } |
| 289 | |
| 290 | bool Host::ContainsBaseSettingValue(const char* section, const char* key) |
| 291 | { |
nothing calls this directly
no test coverage detected