We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43f577c commit fd44c79Copy full SHA for fd44c79
1 file changed
src/catch2/internal/catch_console_colour.cpp
@@ -178,10 +178,7 @@ namespace {
178
void use( Colour::Code _colourCode ) const override {
179
auto setColour = [&out =
180
m_stream->stream()]( char const* escapeCode ) {
181
- // The escape sequence must be flushed to console, otherwise
182
- // if stdin and stderr are intermixed, we'd get accidentally
183
- // coloured output.
184
- out << '\033' << escapeCode << std::flush;
+ out << '\033' << escapeCode;
185
};
186
switch( _colourCode ) {
187
case Colour::None:
0 commit comments