Fixed indentation where possible.

This commit is contained in:
tastytea 2019-03-16 05:52:42 +01:00
parent b4011aae38
commit c265c129ea
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
1 changed files with 5 additions and 3 deletions

View File

@ -135,7 +135,8 @@ int main(int argc, char *argv[])
if (argc <= 1) if (argc <= 1)
{ {
cerr << "usage: " << argv[0] << " [file|--cleanup|--version] [arguments]\n"; cerr << "usage: " << argv[0] <<
" [file|--cleanup|--version] [arguments]\n";
return 1; return 1;
} }
if (string(argv[1]) == "--cleanup") if (string(argv[1]) == "--cleanup")
@ -212,8 +213,9 @@ int main(int argc, char *argv[])
return 1; return 1;
} }
int ret = std::system((compiler + " " + source.string() + " " int ret = std::system((compiler + " " + source.string() + " " +
+ compiler_arguments + " -o " + binary.string()).c_str()); compiler_arguments +
" -o " + binary.string()).c_str());
if (ret != 0) if (ret != 0)
{ {
cerr << "ERROR: Compilation failed.\n"; cerr << "ERROR: Compilation failed.\n";