diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2023-01-09 17:31:21 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2023-01-09 17:33:50 +0100 |
commit | 0b0cb4afa08210b572a9be6cadcb6397935b99d1 (patch) | |
tree | ad8c451cd780cb1c0cc0e5db5b8cc40c2b92489f /src/task_cc.cc | |
parent | 55ab1f564286c6f3e986bf68ebb271132a749c6f (diff) |
Make sure to flush compilation status lines to the console.
Diffstat (limited to 'src/task_cc.cc')
-rw-r--r-- | src/task_cc.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/task_cc.cc b/src/task_cc.cc index d1b89ce..29aeefb 100644 --- a/src/task_cc.cc +++ b/src/task_cc.cc @@ -182,7 +182,7 @@ int TaskCC::runInner() } std::cout << sourceFile.lexically_normal().string() << " => " << - targetFile().lexically_normal().string() << "\n"; + targetFile().lexically_normal().string() << std::endl; } return execute(compiler(), args, settings.verbose > 0); |