| 98 | |
| 99 | template <> |
| 100 | void Out<std::u16string>(IOutputStream& o, const std::u16string& p) { |
| 101 | WriteString(o, p.data(), p.length()); |
| 102 | } |
| 103 | |
| 104 | template <> |
| 105 | void Out<std::u32string>(IOutputStream& o, const std::u32string& p) { |
nothing calls this directly
no test coverage detected