Core: Updated to 10.2.6.53840

This commit is contained in:
Shauren
2024-03-21 21:07:23 +01:00
parent e99482ce9b
commit ac5aee6a98
40 changed files with 1613 additions and 1284 deletions

View File

@@ -53,7 +53,8 @@ class Socket : public BaseSocket<Derived, Impl::BoostBeastSocketWrapper>
using SocketBase = BaseSocket<Derived, Impl::BoostBeastSocketWrapper>;
public:
explicit Socket(boost::asio::ip::tcp::socket&& socket)
template<typename... Args>
explicit Socket(boost::asio::ip::tcp::socket&& socket, Args&&...)
: SocketBase(std::move(socket)) { }
Socket(Socket const& other) = delete;