]> git.saurik.com Git - wxWidgets.git/blobdiff - tests/strings/iostream.cpp
correct WinCE compilation after last change: can't use global scope with GlobalLock...
[wxWidgets.git] / tests / strings / iostream.cpp
index 6e40cbb28f124b1f3c8eb16b56eafb09828fc90b..0abf39621151c937c51a2d69de7528cedd2d93b4 100644 (file)
@@ -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
 }