Actually flush cout before displaying errors
This commit is contained in:
parent
620bc4ba44
commit
c7f6a3eba9
|
@ -92,7 +92,7 @@ int main(int argc, char* argv[]) {
|
|||
cout << result.first << '\n';
|
||||
}
|
||||
} else {
|
||||
cout << "Compilation of " << result.first << " has failed with the following error:\n";
|
||||
cout << "Compilation of " << result.first << " has failed with the following error:" << endl;
|
||||
cerr << result.second.value().what() << '\n';
|
||||
}
|
||||
return is_exception;
|
||||
|
|
Loading…
Reference in New Issue