added brace wrapping after if and for
This commit is contained in:
+5
-2
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user