Fix name typo in http write test

This commit is contained in:
Vinnie Falco
2017-11-11 09:40:10 -08:00
parent afca4cc277
commit c37ce4b15e
2 changed files with 5 additions and 4 deletions

View File

@ -1,6 +1,7 @@
Version 142:
* Warn about upcoming API changes to certain concepts
* Fix name typo in http write test
--------------------------------------------------------------------------------

View File

@ -46,10 +46,10 @@ public:
using const_buffers_type =
boost::asio::const_buffer;
template<bool isRequest, class Allocator>
template<bool isRequest, class Fields>
explicit
writer(message<isRequest,
unsized_body, Allocator> const& msg)
unsized_body, Fields> const& msg)
: body_(msg.body())
{
}
@ -228,10 +228,10 @@ public:
using const_buffers_type =
boost::asio::const_buffer;
template<bool isRequest, class Allocator>
template<bool isRequest, class Fields>
explicit
writer(message<isRequest,
fail_body, Allocator> const& msg)
fail_body, Fields> const& msg)
: body_(msg.body())
{
}