Core: Cout::Flush for POSIX now calls fflush (RM #138)

git-svn-id: svn://ultimatepp.org/upp/trunk@4120 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2011-11-04 10:22:26 +00:00
parent 3383cff232
commit 8f8ba89d84

View file

@ -1192,6 +1192,9 @@ class CoutStream : public Stream {
Put0(w);
}
virtual bool IsOpen() const { return true; }
#ifdef PLATFORM_POSIX
virtual void Flush() { fflush(stdout); }
#endif
};
Stream& Cout()