Compare commits
16 commits
28147ee0e3
...
479c3b628b
Author | SHA1 | Date | |
---|---|---|---|
|
479c3b628b | ||
|
dcd0619d40 | ||
|
e6e86c12c4 | ||
|
1c8cce13ea | ||
96e65dd2c6 | |||
662392509f | |||
9273c473f8 | |||
13d063915e | |||
76ebf081c2 | |||
d1dc6f8e24 | |||
0d471b579a | |||
2c0111f9d7 | |||
ab3fc26003 | |||
a98f2e8552 | |||
eda4f818a9 | |||
04abea4195 |
1 changed files with 2 additions and 0 deletions
|
@ -35,6 +35,8 @@ template <typename Socket>
|
||||||
struct PrintStream : Socket {
|
struct PrintStream : Socket {
|
||||||
using Socket::Socket;
|
using Socket::Socket;
|
||||||
PrintStream(PrintStream&&) = default;
|
PrintStream(PrintStream&&) = default;
|
||||||
|
constexpr PrintStream(Socket&& sock) : Socket(std::move(sock)) {
|
||||||
|
}
|
||||||
using Executor = Socket::executor_type;
|
using Executor = Socket::executor_type;
|
||||||
template <typename ConstBufferSequence,
|
template <typename ConstBufferSequence,
|
||||||
BOOST_ASIO_COMPLETION_TOKEN_FOR(void(boost::system::error_code, std::size_t))
|
BOOST_ASIO_COMPLETION_TOKEN_FOR(void(boost::system::error_code, std::size_t))
|
||||||
|
|
Loading…
Reference in a new issue