Skip to content
Snippets Groups Projects
Commit 1ad00431 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[PL] Python/BC/ST. Use std::cout for flush.

The LOGOG_COUT is equal to std::cout if the LOGOG_UNICODE
is *not* defined.
parent 0ae746ae
No related branches found
No related tags found
No related merge requests found
......@@ -33,7 +33,7 @@ public:
return;
}
LOGOG_COUT << std::flush;
std::cout << std::flush;
}
//! Optionally flushes Python's stdout after running Python code.
......
......@@ -34,7 +34,7 @@ public:
return;
}
LOGOG_COUT << std::flush;
std::cout << std::flush;
}
//! Optionally flushes Python's stdout after running Python code.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment