| 123 | |
| 124 | template <> |
| 125 | void Out<std::u32string_view>(IOutputStream& o, const std::u32string_view& p) { |
| 126 | WriteString(o, p.data(), p.length()); |
| 127 | } |
| 128 | |
| 129 | template <> |
| 130 | void Out<std::filesystem::path>(IOutputStream& o, const std::filesystem::path& p) { |
nothing calls this directly
no test coverage detected