git-svn-id: svn://db.shs.com.ru/pip@482 12ceb7fc-bf1f-11e4-8940-5bc7170c53b5

This commit is contained in:
2017-04-28 11:01:54 +00:00
parent 284f3a5444
commit 594fdf2d7f
8 changed files with 49 additions and 43 deletions

View File

@@ -1024,7 +1024,12 @@ PICout operator <<(PICout s, const PIString & v) {
if (PICout::isBufferActive())
s << v.data();
else
s << v.dataConsole();
s <<
#ifdef WINDOWS
(const char*)v.toByteArray().data();
#else
v.dataConsole;
#endif
s.restoreControl();
s.quote();
return s;