mirror of
https://github.com/boostorg/beast.git
synced 2025-07-30 04:47:29 +02:00
Qualify size_t in message template
This commit is contained in:
@ -1,6 +1,7 @@
|
|||||||
Version 58:
|
Version 58:
|
||||||
|
|
||||||
* Fix unaligned reads in utf8-checker
|
* Fix unaligned reads in utf8-checker
|
||||||
|
* Qualify size_t in message template
|
||||||
|
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
@ -532,7 +532,7 @@ private:
|
|||||||
static_assert(is_body<Body>::value,
|
static_assert(is_body<Body>::value,
|
||||||
"Body requirements not met");
|
"Body requirements not met");
|
||||||
|
|
||||||
template<class... Un, size_t... IUn>
|
template<class... Un, std::size_t... IUn>
|
||||||
message(std::piecewise_construct_t,
|
message(std::piecewise_construct_t,
|
||||||
std::tuple<Un...>& tu,
|
std::tuple<Un...>& tu,
|
||||||
beast::detail::index_sequence<IUn...>)
|
beast::detail::index_sequence<IUn...>)
|
||||||
|
Reference in New Issue
Block a user