]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/string.cpp
compilation fixes
[wxWidgets.git] / src / common / string.cpp
index 423bb6a7e31d2f71a4d053782e00c2496b182c4a..32350af0338afc6f93302ecfb572c208201eea2f 100644 (file)
@@ -176,6 +176,12 @@ istream& operator>>(istream& is, wxString& WXUNUSED(str))
   return is;
 }
 
+ostream& operator<<(ostream& os, const wxString& str)
+{
+  os << str.c_str();
+  return os;
+}
+
 #endif  //std::string compatibility
 
 // ----------------------------------------------------------------------------