Canonicalize string_view parameter types

This commit is contained in:
Vinnie Falco
2017-06-04 10:52:28 -07:00
parent 048ee7523c
commit aa2c915c96
22 changed files with 141 additions and 140 deletions

View File

@@ -217,7 +217,7 @@ public:
template<bool isRequest, class Pred>
void
good(string_view const& s,
good(string_view s,
Pred const& pred, bool skipBody = false)
{
using boost::asio::buffer;
@@ -239,7 +239,7 @@ public:
template<bool isRequest>
void
good(string_view const& s)
good(string_view s)
{
good<isRequest>(s,
[](test_parser<isRequest> const&)
@@ -249,7 +249,7 @@ public:
template<bool isRequest>
void
bad(string_view const& s,
bad(string_view s,
error_code const& ev, bool skipBody = false)
{
using boost::asio::buffer;