More clang-tidy cleanup

This commit is contained in:
Dan Paulat 2024-12-16 06:26:48 -06:00
parent 80c3cb70d2
commit 0c17744bc6
3 changed files with 7 additions and 7 deletions

View file

@ -42,17 +42,17 @@ ProductSettings::ProductSettings(ProductSettings&&) noexcept = default;
ProductSettings&
ProductSettings::operator=(ProductSettings&&) noexcept = default;
SettingsVariable<bool>& ProductSettings::show_smoothed_range_folding() const
SettingsVariable<bool>& ProductSettings::show_smoothed_range_folding()
{
return p->showSmoothedRangeFolding_;
}
SettingsVariable<bool>& ProductSettings::sti_forecast_enabled() const
SettingsVariable<bool>& ProductSettings::sti_forecast_enabled()
{
return p->stiForecastEnabled_;
}
SettingsVariable<bool>& ProductSettings::sti_past_enabled() const
SettingsVariable<bool>& ProductSettings::sti_past_enabled()
{
return p->stiPastEnabled_;
}