Remove a newline and use a multi-variable declaration for the local booleans in main.cpp

This commit is contained in:
Username404 2021-10-03 15:28:24 +02:00
parent 613e2f7019
commit ff8bf6d1de
Signed by: Username404-59
GPG Key ID: 7AB361FBB257A5D1
1 changed files with 3 additions and 4 deletions

View File

@ -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<string_view> files;
for (signed int i = 1; i < argc; ++i)
{