Trivial code formatting for some {.cpp,.h} files

This commit is contained in:
luz.paz
2020-04-03 12:30:58 -04:00
committed by Yorik van Havre
parent a45738c629
commit d36c3ebe57
14 changed files with 95 additions and 94 deletions

View File

@@ -202,12 +202,12 @@ struct FlagToggler {
FlagToggler(Flag &_flag, Flag check)
:flag(_flag),toggled(check==_flag)
{
if(toggled)
if (toggled)
flag = !flag;
}
~FlagToggler() {
if(toggled)
if (toggled)
flag = !flag;
}
};