| 535 | #endif |
| 536 | |
| 537 | void PrintU16StringTo(const ::std::u16string& s, ostream* os) { |
| 538 | PrintCharsAsStringTo(s.data(), s.size(), os); |
| 539 | } |
| 540 | |
| 541 | void PrintU32StringTo(const ::std::u32string& s, ostream* os) { |
| 542 | PrintCharsAsStringTo(s.data(), s.size(), os); |
no test coverage detected