| 336 | } |
| 337 | |
| 338 | float Host::GetFloatSettingValue(const char* section, const char* key, float default_value /*= 0.0f*/) |
| 339 | { |
| 340 | std::unique_lock lock(s_settings_mutex); |
| 341 | return s_layered_settings_interface.GetFloatValue(section, key, default_value); |
| 342 | } |
| 343 | |
| 344 | double Host::GetDoubleSettingValue(const char* section, const char* key, double default_value /*= 0.0f*/) |
| 345 | { |
nothing calls this directly
no test coverage detected