replace \0 with std::ends

This commit is contained in:
maartenkeijzer 2003-03-20 19:49:32 +00:00
commit b15d1cef39

View file

@ -119,8 +119,8 @@ inline void eoGnuplot1DMonitor::FirstPlot()
if (i<vec.size()-1)
os << ", ";
}
os << "\n";
os << '\0';
os << '\n';
os << std::ends;
#ifdef HAVE_SSTREAM
PipeComSend( gpCom, os.str().c_str());
#else