| 113 | |
| 114 | template <> |
| 115 | void Out<std::wstring_view>(IOutputStream& o, const std::wstring_view& p) { |
| 116 | WriteString(o, p.data(), p.length()); |
| 117 | } |
| 118 | |
| 119 | template <> |
| 120 | void Out<std::u16string_view>(IOutputStream& o, const std::u16string_view& p) { |
nothing calls this directly
no test coverage detected