turn wxUSE_STD_IOSTREAM on by default (except for the compilers which are too broken) (should have been part of r51844)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@51847 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2008-02-16 15:56:02 +00:00
parent 5a049933b6
commit 9b9483c7fd

View File

@ -200,15 +200,17 @@
#define wxUSE_STREAMS 0
#define wxUSE_STD_IOSTREAM 0
#if defined(__DMC__) || defined(__WATCOMC__) \
|| (defined(_MSC_VER) && _MSC_VER < 1200)
#define wxUSE_STD_STRING 0
#define wxUSE_STD_DEFAULT 0
#else
#define wxUSE_STD_STRING 0
#define wxUSE_STD_DEFAULT 0
#endif
#define wxUSE_STD_IOSTREAM wxUSE_STD_DEFAULT
#define wxUSE_STD_STRING wxUSE_STD_DEFAULT
#define wxUSE_PRINTF_POS_PARAMS 0