Show debug string immediately after call.

--HG--
branch : develop
This commit is contained in:
Roman Telezhynskyi 2016-08-03 14:53:38 +03:00
parent 356a77c924
commit ce92d2994d

View file

@ -70,6 +70,7 @@ static const auto V_EX_CONFIG = 78; /*Something was found in an unconfi
inline QTextStream& vStdErr()
{
static QTextStream ts( stderr );
ts.flush();
return ts;
}
@ -77,6 +78,7 @@ inline QTextStream& vStdErr()
inline QTextStream& vStdOut()
{
static QTextStream ts( stdout );
ts.flush();
return ts;
}