added brace wrapping after if and for

This commit is contained in:
fourtf
2018-10-21 13:43:02 +02:00
parent c6e1ec3c71
commit e259b9e39f
138 changed files with 4738 additions and 2237 deletions
+5 -2
View File
@@ -20,9 +20,12 @@ int main(int argc, char **argv)
[&](auto s) { return s; });
// run in gui mode or browser extension host mode
if (shouldRunBrowserExtensionHost(args)) {
if (shouldRunBrowserExtensionHost(args))
{
runBrowserExtensionHost();
} else {
}
else
{
Paths paths;
Settings settings(paths);