externals: Update boost to 1.72 and add Boost Context

This commit is contained in:
Fernando Sahmkow 2020-02-10 12:31:57 -04:00
parent 5e8300b76a
commit 77abe07b3b
618 changed files with 96299 additions and 14263 deletions

View file

@ -48,19 +48,19 @@ class stream_protocol
{
public:
/// Obtain an identifier for the type of the protocol.
int type() const
int type() const BOOST_ASIO_NOEXCEPT
{
return SOCK_STREAM;
}
/// Obtain an identifier for the protocol.
int protocol() const
int protocol() const BOOST_ASIO_NOEXCEPT
{
return 0;
}
/// Obtain an identifier for the protocol family.
int family() const
int family() const BOOST_ASIO_NOEXCEPT
{
return AF_UNIX;
}