forked from boostorg/beast
Qualify size_t in message template
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
Version 58:
|
||||
|
||||
* Fix unaligned reads in utf8-checker
|
||||
* Qualify size_t in message template
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
|
@@ -532,7 +532,7 @@ private:
|
||||
static_assert(is_body<Body>::value,
|
||||
"Body requirements not met");
|
||||
|
||||
template<class... Un, size_t... IUn>
|
||||
template<class... Un, std::size_t... IUn>
|
||||
message(std::piecewise_construct_t,
|
||||
std::tuple<Un...>& tu,
|
||||
beast::detail::index_sequence<IUn...>)
|
||||
|
Reference in New Issue
Block a user