genesys: fixed indentation again.

Hopefully, I will get it right this time. Uses 4 space indents rather
than 2 as used elsewhere in the code base.
saned_man_option_update
Ralph Little 2021-04-07 09:06:39 -07:00
rodzic 5702046a9c
commit 730e4ada37
1 zmienionych plików z 5 dodań i 5 usunięć

Wyświetl plik

@ -57,14 +57,14 @@ 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)
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)
for (auto it = s_functions_run_at_backend_exit->rbegin();
it != s_functions_run_at_backend_exit->rend(); ++it)
{
(*it) ();
(*it)();
}
s_functions_run_at_backend_exit.reset ();
s_functions_run_at_backend_exit.reset();
}
}