| 103 | |
| 104 | template <> |
| 105 | void Out<std::u32string>(IOutputStream& o, const std::u32string& p) { |
| 106 | WriteString(o, p.data(), p.length()); |
| 107 | } |
| 108 | |
| 109 | template <> |
| 110 | void Out<std::string_view>(IOutputStream& o, const std::string_view& p) { |
nothing calls this directly
no test coverage detected