From 730e4ada37463f7f8e5116affbc3a16f48e5169e Mon Sep 17 00:00:00 2001 From: Ralph Little Date: Wed, 7 Apr 2021 09:06:39 -0700 Subject: [PATCH] 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. --- backend/genesys/static_init.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/backend/genesys/static_init.cpp b/backend/genesys/static_init.cpp index 9755e70f2..525778591 100644 --- a/backend/genesys/static_init.cpp +++ b/backend/genesys/static_init.cpp @@ -57,14 +57,14 @@ void add_function_to_run_at_backend_exit(const std::function& 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(); } }