From 232f89100e3ce89b83dc8b2475467350d9f7e872 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 25 Sep 2007 23:22:41 +0000 Subject: [PATCH] fix operator<<() for wxString git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@48941 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/cppunit.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wx/cppunit.h b/include/wx/cppunit.h index d961039112..32bf79fd92 100644 --- a/include/wx/cppunit.h +++ b/include/wx/cppunit.h @@ -91,7 +91,7 @@ inline std::ostream& operator<<(std::ostream& o, const wxString& s) { - return o << wxSafeConvertWX2MB(s); + return o << (const char *)wxSafeConvertWX2MB(s); } -- 2.45.2