From 184559e22389545f65f9298305f5e92d7527d87e Mon Sep 17 00:00:00 2001 From: luocai Date: Tue, 2 Jan 2024 12:10:35 +0800 Subject: [PATCH] make flat_buffer lower. --- Server/HttpSession.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Server/HttpSession.h b/Server/HttpSession.h index 56b6873..d7d249d 100644 --- a/Server/HttpSession.h +++ b/Server/HttpSession.h @@ -34,7 +34,7 @@ public: private: boost::beast::tcp_stream m_stream; - boost::beast::flat_buffer m_buffer{std::numeric_limits::max()}; + boost::beast::flat_buffer m_buffer{std::numeric_limits::max()}; SharedStatePtr m_state; std::optional> m_parser; };