forked from organicmaps/organicmaps
[qt] Fix for ignoring function's val with 'warn_unused_result'
This commit is contained in:
parent
1c1770cbb8
commit
5dfff4ddc4
1 changed files with 4 additions and 2 deletions
|
@ -32,8 +32,10 @@ std::string const RoutingSettings::kRouterTypeCachedSettings = "router_type_desk
|
|||
bool RoutingSettings::TurnsEnabled()
|
||||
{
|
||||
bool enabled = false;
|
||||
settings::Get(kShowTurnsSettings, enabled);
|
||||
return enabled;
|
||||
if (settings::Get(kShowTurnsSettings, enabled))
|
||||
return enable;
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
// static
|
||||
|
|
Loading…
Add table
Reference in a new issue