| 8886 | // Prints a ::wstring object. |
| 8887 | #if GTEST_HAS_GLOBAL_WSTRING |
| 8888 | void PrintWideStringTo(const ::wstring& s, ostream* os) { |
| 8889 | PrintWideCharsAsStringTo(s.data(), s.size(), os); |
| 8890 | } |
| 8891 | #endif // GTEST_HAS_GLOBAL_WSTRING |
| 8892 | |
| 8893 | #if GTEST_HAS_STD_WSTRING |
no test coverage detected