From ff8bf6d1def62e9d14ecaf2d7b356fcb63710d42 Mon Sep 17 00:00:00 2001 From: Username404 Date: Sun, 3 Oct 2021 15:28:24 +0200 Subject: [PATCH] Remove a newline and use a multi-variable declaration for the local booleans in main.cpp --- src/main.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 7674bff..0e19574 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -11,10 +11,9 @@ using namespace std; int main(int argc, char* argv[]) { string target = ".lua"; - bool printResult = false; - bool parallel = false; - bool newLines = true; - + bool printResult = false, + parallel = false, + newLines = true; set files; for (signed int i = 1; i < argc; ++i) {