| 35 | } |
| 36 | |
| 37 | std::span<uint8_t> reinterpret_span_u8(std::span<char> s) { |
| 38 | return std::span(reinterpret_cast<uint8_t*>(s.data()), s.size()); |
| 39 | } |
| 40 | |
| 41 | std::span<char> reinterpret_span_char(std::span<uint8_t> s) { |
| 42 | return std::span(reinterpret_cast<char*>(s.data()), s.size()); |
nothing calls this directly
no outgoing calls
no test coverage detected