genesys: fix indentation

saned_man_option_update
Ralph Little 2021-04-07 09:01:29 -07:00
rodzic 7ce23d05e2
commit 5702046a9c
1 zmienionych plików z 9 dodań i 9 usunięć

Wyświetl plik

@ -57,15 +57,15 @@ void add_function_to_run_at_backend_exit(const std::function<void()>& function)
void run_functions_at_backend_exit()
{
if (s_functions_run_at_backend_exit)
{
for (auto it = s_functions_run_at_backend_exit->rbegin();
it != s_functions_run_at_backend_exit->rend(); ++it)
{
(*it)();
}
s_functions_run_at_backend_exit.reset();
}
if (s_functions_run_at_backend_exit)
{
for (auto it = s_functions_run_at_backend_exit->rbegin ();
it != s_functions_run_at_backend_exit->rend (); ++it)
{
(*it) ();
}
s_functions_run_at_backend_exit.reset ();
}
}
} // namespace genesys