Fix compile errors

This commit is contained in:
Vinnie Falco
2019-02-20 22:01:30 -08:00
parent 95314b7c3a
commit e2d3f741b8
4 changed files with 7 additions and 9 deletions

View File

@@ -91,7 +91,7 @@ struct stream_base
}
};
static constexpr time_point never()
static time_point never() noexcept
{
return (time_point::max)();
}

View File

@@ -152,7 +152,7 @@ class stream
using time_point = typename
std::chrono::steady_clock::time_point;
static constexpr time_point never()
static time_point never() noexcept
{
return (time_point::max)();
}

View File

@@ -33,7 +33,6 @@ struct stream_base
/// Returns the special time_point value meaning "never"
static
constexpr
time_point
never() noexcept
{
@@ -42,7 +41,6 @@ struct stream_base
/// Returns the special duration value meaning "none"
static
constexpr
duration
none() noexcept
{

View File

@@ -155,7 +155,7 @@ public:
ws_.next_layer().async_connect(ep_,
alloc_.wrap(beast::bind_front_handler(
&connection::on_connect,
shared_from_this())));
this->shared_from_this())));
}
private:
@@ -170,7 +170,7 @@ private:
"/",
alloc_.wrap(beast::bind_front_handler(
&connection::on_handshake,
shared_from_this())));
this->shared_from_this())));
}
void
@@ -191,7 +191,7 @@ private:
beast::buffers_prefix(dist(rng_), tb_),
alloc_.wrap(beast::bind_front_handler(
&connection::on_write,
shared_from_this())));
this->shared_from_this())));
}
void
@@ -206,7 +206,7 @@ private:
ws_.async_close({},
alloc_.wrap(beast::bind_front_handler(
&connection::on_close,
shared_from_this())));
this->shared_from_this())));
}
void
@@ -215,7 +215,7 @@ private:
ws_.async_read(buffer_,
alloc_.wrap(beast::bind_front_handler(
&connection::on_read,
shared_from_this())));
this->shared_from_this())));
}
void