Formatting: Fix indentation of public/private specifiers

This commit is contained in:
Jonathan G Rennison
2023-02-28 01:44:28 +00:00
parent 0a8c58b755
commit 88d7a8ea13
7 changed files with 9 additions and 9 deletions

View File

@@ -18,7 +18,7 @@ class scope_exit_obj {
bool shouldexec;
public:
public:
scope_exit_obj(T &&func)
: f(std::move(func)), shouldexec(true) { }