Try making the ip::multicast::enable_loopback socket option an unsigned

char on AIX.
This commit is contained in:
chris_kohlhoff 2007-09-24 13:01:48 +00:00
parent 6023bfafcb
commit 0bf38cf1dd

View File

@ -37,7 +37,7 @@ template <int IPv4_Level, int IPv4_Name, int IPv6_Level, int IPv6_Name>
class boolean
{
public:
#if defined(__sun)
#if defined(__sun) || defined(_AIX)
typedef unsigned char value_type;
#else
typedef int value_type;