| 93 | |
| 94 | template <> |
| 95 | void Out<std::wstring>(IOutputStream& o, const std::wstring& p) { |
| 96 | WriteString(o, p.data(), p.length()); |
| 97 | } |
| 98 | |
| 99 | template <> |
| 100 | void Out<std::u16string>(IOutputStream& o, const std::u16string& p) { |
nothing calls this directly
no test coverage detected