From: Vadim Zeitlin Date: Tue, 27 May 2008 16:38:12 +0000 (+0000) Subject: there is no std::wostream under Palm (part of ticket 4700) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/65d990fb214d0298d17eda7bae6b0dbaa830f62e?ds=inline 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 --- diff --git a/include/wx/defs.h b/include/wx/defs.h index 3d34d267b2..22afbab35e 100644 --- a/include/wx/defs.h +++ b/include/wx/defs.h @@ -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