Remove a newline and use a multi-variable declaration for the local booleans in main.cpp
This commit is contained in:
parent
613e2f7019
commit
ff8bf6d1de
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue