| 256 | } |
| 257 | |
| 258 | void ByteOutputStream::appendStringView(StringView value) { |
| 259 | appendStringView((std::string_view)value); |
| 260 | } |
| 261 | |
| 262 | void ByteOutputStream::appendStringView(std::string_view value) { |
| 263 | const int32_t bytes = value.size(); |
no test coverage detected