X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/99d8bc6593ee026a251eb0009c14f17aa6af4616..82d1a19568ce7c468067a11f09aafaf3a770c9f8:/tests/strings/iostream.cpp diff --git a/tests/strings/iostream.cpp b/tests/strings/iostream.cpp index 6e40cbb28f..0abf396211 100644 --- a/tests/strings/iostream.cpp +++ b/tests/strings/iostream.cpp @@ -54,8 +54,10 @@ void StringIostreamTestCase::Out() s << wxString("hello"); ASSERT_OSTREAM_EQUAL("hello", s); +#ifndef __MINGW32__ std::wostringstream ws; ws << wxString("bye"); ASSERT_WOSTREAM_EQUAL(L"bye", ws); +#endif }