| 10197 | // Prints a ::wstring object. |
| 10198 | #if GTEST_HAS_GLOBAL_WSTRING |
| 10199 | void PrintWideStringTo(const ::wstring& s, ostream* os) { |
| 10200 | PrintCharsAsStringTo(s.data(), s.size(), os); |
| 10201 | } |
| 10202 | #endif // GTEST_HAS_GLOBAL_WSTRING |
| 10203 | |
| 10204 | #if GTEST_HAS_STD_WSTRING |
no test coverage detected