there is no std::wostream under Palm (part of ticket 4700)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@53792 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2008-05-27 16:38:12 +00:00
parent ae1675944b
commit 65d990fb21

View File

@@ -456,8 +456,10 @@ typedef short int WXTYPE;
#ifndef HAVE_WOSTREAM
// Mingw <=3.4 doesn't have std::wostream
#if defined(__MINGW32__) && !wxCHECK_GCC_VERSION(4,0)
// Mingw <= 3.4 and any version (so far) when targetting PalmOS don't have
// std::wostream
#if defined(__PALMOS__) || \
(defined(__MINGW32__) && !wxCHECK_GCC_VERSION(4, 0))
#define wxNO_WOSTREAM
#endif