This commit is contained in:
Vinnie Falco
2019-02-05 08:24:26 -08:00
parent 98aed8ed49
commit 44d9eaba4d
6 changed files with 14 additions and 14 deletions

View File

@@ -269,8 +269,8 @@ struct basic_parser_base
if(BOOST_UNLIKELY(! is_print(*p))) if(BOOST_UNLIKELY(! is_print(*p)))
if((BOOST_LIKELY(static_cast< if((BOOST_LIKELY(static_cast<
unsigned char>(*p) < '\040') && unsigned char>(*p) < '\040') &&
BOOST_LIKELY(*p != '\011')) || BOOST_LIKELY(*p != 9)) ||
BOOST_UNLIKELY(*p == '\177')) BOOST_UNLIKELY(*p == 127))
goto found_control; goto found_control;
} }
found_control: found_control:

View File

@@ -187,7 +187,7 @@ private:
int s_ = do_construct; int s_ = do_construct;
bool split_ = false; bool split_ = false;
bool header_done_ = false; bool header_done_ = false;
bool more_; bool more_ = false;
public: public:
/// Constructor /// Constructor

View File

@@ -122,7 +122,7 @@ make_prng_no_tls(bool secure)
std::minstd_rand r_; std::minstd_rand r_;
public: public:
fast_prng* next; fast_prng* next = nullptr;
fast_prng() fast_prng()
: r_([] : r_([]
@@ -166,7 +166,7 @@ make_prng_no_tls(bool secure)
beast::detail::chacha<20> r_; beast::detail::chacha<20> r_;
public: public:
secure_prng* next; secure_prng* next = nullptr;
secure_prng() secure_prng()
: r_(prng_seed(), [] : r_(prng_seed(), []

View File

@@ -107,7 +107,7 @@ public:
std::thread t_; std::thread t_;
void void
fail(error_code ec, string_view what) fail(error_code const& ec, string_view what)
{ {
if(ec != net::error::operation_aborted) if(ec != net::error::operation_aborted)
log_ << what << ": " << ec.message() << "\n"; log_ << what << ": " << ec.message() << "\n";
@@ -221,19 +221,19 @@ public:
protected: protected:
void void
on_read(error_code ec) on_read(error_code const& ec)
{ {
boost::ignore_unused(ec); boost::ignore_unused(ec);
} }
void void
on_write(error_code, std::size_t) on_write(error_code const& , std::size_t)
{ {
} }
}; };
void void
on_accept(error_code ec) on_accept(error_code const& ec)
{ {
if(! acceptor_.is_open()) if(! acceptor_.is_open())
return; return;
@@ -410,7 +410,7 @@ public:
} }
void void
operator()(error_code ec, std::size_t n) operator()(error_code const& ec, std::size_t n)
{ {
BEAST_EXPECTS(ec == ec_, ec.message()); BEAST_EXPECTS(ec == ec_, ec.message());
BEAST_EXPECT(n == n_); BEAST_EXPECT(n == n_);

View File

@@ -33,7 +33,7 @@ public:
testDefaultIterators() testDefaultIterators()
{ {
// default ctor is one past the end // default ctor is one past the end
char c[2]; char c[2] = {};
auto bs = buffers_cat( auto bs = buffers_cat(
net::const_buffer(&c[0], 1), net::const_buffer(&c[0], 1),
net::const_buffer(&c[1], 1)); net::const_buffer(&c[1], 1));
@@ -58,7 +58,7 @@ public:
try try
{ {
it = {}; it = {};
*it; (void)*it;
fail(); fail();
} }
catch(std::logic_error const&) catch(std::logic_error const&)
@@ -114,7 +114,7 @@ public:
checkException( checkException(
[] []
{ {
*(type::const_iterator{}); (void)*(type::const_iterator{});
}); });
// Incrementing a default-constructed iterator // Incrementing a default-constructed iterator

View File

@@ -47,7 +47,7 @@ struct span_body_test
BEAST_EXPECT(! buf->second); BEAST_EXPECT(! buf->second);
} }
{ {
char buf[5]; char buf[5] = {};
using B = span_body<char>; using B = span_body<char>;
request<B> req; request<B> req;
req.body() = span<char>{buf, sizeof(buf)}; req.body() = span<char>{buf, sizeof(buf)};