From 8dca61b566cf6692149727d69cc244850dff7193 Mon Sep 17 00:00:00 2001 From: Pavel P Date: Wed, 7 Jan 2026 23:38:45 +0200 Subject: [PATCH] Avoid tyecast warnings in inflate_with_eb --- include/boost/beast/websocket/detail/impl_base.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/beast/websocket/detail/impl_base.hpp b/include/boost/beast/websocket/detail/impl_base.hpp index 869b166a..92c09b3c 100644 --- a/include/boost/beast/websocket/detail/impl_base.hpp +++ b/include/boost/beast/websocket/detail/impl_base.hpp @@ -46,7 +46,7 @@ struct impl_base { // `true` if current read message is compressed bool rd_set = false; - std::uint8_t rd_eb_consumed = 0; + std::size_t rd_eb_consumed = 0; zlib::deflate_stream zo; zlib::inflate_stream zi;