| 11527 | } // anonymous namespace |
| 11528 | |
| 11529 | void PrintStringTo(const ::std::string& s, ostream* os) { |
| 11530 | if (PrintCharsAsStringTo(s.data(), s.size(), os) == kHexEscape) { |
| 11531 | if (GTEST_FLAG(print_utf8)) { |
| 11532 | ConditionalPrintAsText(s.data(), s.size(), os); |
| 11533 | } |
| 11534 | } |
| 11535 | } |
| 11536 | |
| 11537 | #if GTEST_HAS_STD_WSTRING |
| 11538 | void PrintWideStringTo(const ::std::wstring& s, ostream* os) { |
no test coverage detected