| 118 | |
| 119 | template <> |
| 120 | void Out<std::u16string_view>(IOutputStream& o, const std::u16string_view& p) { |
| 121 | WriteString(o, p.data(), p.length()); |
| 122 | } |
| 123 | |
| 124 | template <> |
| 125 | void Out<std::u32string_view>(IOutputStream& o, const std::u32string_view& p) { |
nothing calls this directly
no test coverage detected