| 9361 | // Prints a ::wstring object. |
| 9362 | #if GTEST_HAS_GLOBAL_WSTRING |
| 9363 | void PrintWideStringTo(const ::wstring& s, ostream* os) { |
| 9364 | PrintCharsAsStringTo(s.data(), s.size(), os); |
| 9365 | } |
| 9366 | #endif // GTEST_HAS_GLOBAL_WSTRING |
| 9367 | |
| 9368 | #if GTEST_HAS_STD_WSTRING |
no test coverage detected