Use std::clog instead of std::cout to avoid buffering (#1915)

This commit is contained in:
zosrothko 2017-09-29 23:08:26 +02:00 committed by Aleksandar Fabijanic
parent 4e4fed8965
commit 1f19657406

View File

@ -14,7 +14,7 @@ namespace CppUnit {
TestRunner::TestRunner():
_ostr(std::cout)
_ostr(std::clog)
{
}