X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6ed28b941c9a7f6e6a019c9d61dc947d0c8f6e5a..a25a17732c2d4d34d5d35a5318053dd8c6e29722:/tests/strings/iostream.cpp?ds=sidebyside diff --git a/tests/strings/iostream.cpp b/tests/strings/iostream.cpp index 0abf396211..c91b66b1d6 100644 --- a/tests/strings/iostream.cpp +++ b/tests/strings/iostream.cpp @@ -21,6 +21,8 @@ #include "wx/string.h" #endif // WX_PRECOMP +#if wxUSE_STD_IOSTREAM + #include #define ASSERT_OSTREAM_EQUAL(p, s) CPPUNIT_ASSERT_EQUAL(std::string(p), s.str()) @@ -54,10 +56,11 @@ void StringIostreamTestCase::Out() s << wxString("hello"); ASSERT_OSTREAM_EQUAL("hello", s); -#ifndef __MINGW32__ +#if wxUSE_UNICODE && defined(HAVE_WOSTREAM) std::wostringstream ws; ws << wxString("bye"); ASSERT_WOSTREAM_EQUAL(L"bye", ws); #endif } +#endif // wxUSE_STD_IOSTREAM