From 2c98a82e7525fac098c6a9ebaf3e4be31a7f7392 Mon Sep 17 00:00:00 2001 From: Lee *!* Clagett Date: Sun, 21 May 2023 13:34:34 -0400 Subject: [PATCH] Add byte_stream `value_type` and `data()` --- contrib/epee/include/byte_stream.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/contrib/epee/include/byte_stream.h b/contrib/epee/include/byte_stream.h index 4f565326a..0904f9aa1 100644 --- a/contrib/epee/include/byte_stream.h +++ b/contrib/epee/include/byte_stream.h @@ -74,6 +74,7 @@ namespace epee public: using char_type = std::uint8_t; using Ch = char_type; + using value_type = char_type; //! Increase internal buffer by at least `byte_stream_increase` bytes. byte_stream() noexcept @@ -86,6 +87,7 @@ namespace epee ~byte_stream() noexcept = default; byte_stream& operator=(byte_stream&& rhs) noexcept; + std::uint8_t* data() noexcept { return buffer_.get(); } const std::uint8_t* data() const noexcept { return buffer_.get(); } std::uint8_t* tellp() const noexcept { return next_write_; } std::size_t available() const noexcept { return end_ - next_write_; }