Fixing typo

This commit is contained in:
Robin Sommer 2012-01-23 22:00:56 -08:00
parent 08683175c1
commit 2c439fd0a2

View file

@ -7,10 +7,10 @@ class IPAddr
{ {
public: public:
/// Address family. /// Address family.
enum { IPv4, IPv6 } Family; enum Family { IPv4, IPv6 };
/// Byte order. /// Byte order.
enum { Host, Network } ByteOrder; enum ByteOrder { Host, Network };
/// Constructs an address instance from an IPv4 address. /// Constructs an address instance from an IPv4 address.
/// ///