-
-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
boost::nowide::cerr
is buffered
#186
Comments
This has been fixed for Boost 1.77 / Nowide 11.2 by 4ac0ca5 |
Flamefire
added a commit
that referenced
this issue
Oct 17, 2024
Flamefire
added a commit
that referenced
this issue
Oct 18, 2024
Flamefire
added a commit
that referenced
this issue
Oct 18, 2024
Flamefire
added a commit
that referenced
this issue
Oct 19, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When using
std::cerr << "Something\n"
it behaves the same asstd::cerr << "Something" << std::endl
, i.e. any output is directly flushed/printed to the console.However there is some buffering happening such that if the application crashes or otherwise terminates it is not ensured that the output is/was actually visible.
Investigate that e.g. the following holds:
The text was updated successfully, but these errors were encountered: