whoops, windows-specific function

This commit is contained in:
David Rose 2011-08-30 02:59:11 +00:00
parent 9c4990c88a
commit d297a816af

View File

@ -71,6 +71,7 @@ string_to_wstring(wstring &result, const string &source) {
} }
#endif // _WIN32 #endif // _WIN32
#ifdef _WIN32
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
// Function: wstring ostream operator // Function: wstring ostream operator
// Description: Converts the wstring to utf-8 for output. // Description: Converts the wstring to utf-8 for output.
@ -83,3 +84,4 @@ operator << (ostream &out, const wstring &str) {
} }
return out; return out;
} }
#endif // _WIN32