| 530 | |
| 531 | #ifdef __cpp_char8_t |
| 532 | void PrintU8StringTo(const ::std::u8string& s, ostream* os) { |
| 533 | PrintCharsAsStringTo(s.data(), s.size(), os); |
| 534 | } |
| 535 | #endif |
| 536 | |
| 537 | void PrintU16StringTo(const ::std::u16string& s, ostream* os) { |
nothing calls this directly
no test coverage detected