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

@ -55,7 +55,7 @@ public:
#endif
/// Default constructor.
basic_endpoint()
basic_endpoint() BOOST_ASIO_NOEXCEPT
{
}

View file

@ -74,19 +74,19 @@ public:
}
/// Obtain an identifier for the type of the protocol.
int type() const
int type() const BOOST_ASIO_NOEXCEPT
{
return BOOST_ASIO_OS_DEF(SOCK_DGRAM);
}
/// Obtain an identifier for the protocol.
int protocol() const
int protocol() const BOOST_ASIO_NOEXCEPT
{
return protocol_;
}
/// Obtain an identifier for the protocol family.
int family() const
int family() const BOOST_ASIO_NOEXCEPT
{
return family_;
}

View file

@ -74,19 +74,19 @@ public:
}
/// Obtain an identifier for the type of the protocol.
int type() const
int type() const BOOST_ASIO_NOEXCEPT
{
return BOOST_ASIO_OS_DEF(SOCK_RAW);
}
/// Obtain an identifier for the protocol.
int protocol() const
int protocol() const BOOST_ASIO_NOEXCEPT
{
return protocol_;
}
/// Obtain an identifier for the protocol family.
int family() const
int family() const BOOST_ASIO_NOEXCEPT
{
return family_;
}

View file

@ -73,19 +73,19 @@ public:
}
/// Obtain an identifier for the type of the protocol.
int type() const
int type() const BOOST_ASIO_NOEXCEPT
{
return BOOST_ASIO_OS_DEF(SOCK_SEQPACKET);
}
/// Obtain an identifier for the protocol.
int protocol() const
int protocol() const BOOST_ASIO_NOEXCEPT
{
return protocol_;
}
/// Obtain an identifier for the protocol family.
int family() const
int family() const BOOST_ASIO_NOEXCEPT
{
return family_;
}

View file

@ -75,19 +75,19 @@ public:
}
/// Obtain an identifier for the type of the protocol.
int type() const
int type() const BOOST_ASIO_NOEXCEPT
{
return BOOST_ASIO_OS_DEF(SOCK_STREAM);
}
/// Obtain an identifier for the protocol.
int protocol() const
int protocol() const BOOST_ASIO_NOEXCEPT
{
return protocol_;
}
/// Obtain an identifier for the protocol family.
int family() const
int family() const BOOST_ASIO_NOEXCEPT
{
return family_;
}