mirror of
https://github.com/boostorg/beast.git
synced 2025-07-30 12:57:31 +02:00
Fix name typo in http write test
This commit is contained in:
@ -1,6 +1,7 @@
|
|||||||
Version 142:
|
Version 142:
|
||||||
|
|
||||||
* Warn about upcoming API changes to certain concepts
|
* Warn about upcoming API changes to certain concepts
|
||||||
|
* Fix name typo in http write test
|
||||||
|
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
@ -46,10 +46,10 @@ public:
|
|||||||
using const_buffers_type =
|
using const_buffers_type =
|
||||||
boost::asio::const_buffer;
|
boost::asio::const_buffer;
|
||||||
|
|
||||||
template<bool isRequest, class Allocator>
|
template<bool isRequest, class Fields>
|
||||||
explicit
|
explicit
|
||||||
writer(message<isRequest,
|
writer(message<isRequest,
|
||||||
unsized_body, Allocator> const& msg)
|
unsized_body, Fields> const& msg)
|
||||||
: body_(msg.body())
|
: body_(msg.body())
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
@ -228,10 +228,10 @@ public:
|
|||||||
using const_buffers_type =
|
using const_buffers_type =
|
||||||
boost::asio::const_buffer;
|
boost::asio::const_buffer;
|
||||||
|
|
||||||
template<bool isRequest, class Allocator>
|
template<bool isRequest, class Fields>
|
||||||
explicit
|
explicit
|
||||||
writer(message<isRequest,
|
writer(message<isRequest,
|
||||||
fail_body, Allocator> const& msg)
|
fail_body, Fields> const& msg)
|
||||||
: body_(msg.body())
|
: body_(msg.body())
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user