| 38 | } |
| 39 | |
| 40 | auto IoBuffer::GetBuffer() const -> std::span<const uint8_t> { |
| 41 | return {data_, size_}; |
| 42 | } |
| 43 | |
| 44 | auto IoBuffer::GetBuffer() -> std::span<uint8_t> { return {data_, size_}; } |
| 45 |
nothing calls this directly
no outgoing calls
no test coverage detected