| 166 | struct StdInputStream::TextCodec |
| 167 | { |
| 168 | void validateBytes(XMLByte* const toFill, std::streamsize len) |
| 169 | { |
| 170 | if (len <= 0) { |
| 171 | return; |
| 172 | } |
| 173 | sanitizeUtf8Bytes(toFill, static_cast<std::size_t>(len)); |
| 174 | } |
| 175 | }; |
| 176 | |
| 177 | StdInputStream::StdInputStream( |
no test coverage detected