From bf87614fa648193fa62de610e768c4edd254dcb8 Mon Sep 17 00:00:00 2001 From: Vinnie Falco Date: Tue, 5 Nov 2013 03:22:04 -0800 Subject: [PATCH] Fix warning --- beast/net/IPAddress.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/beast/net/IPAddress.h b/beast/net/IPAddress.h index c4b6c3941c..fa98ee344e 100644 --- a/beast/net/IPAddress.h +++ b/beast/net/IPAddress.h @@ -125,15 +125,15 @@ public: operator uint8() const { - return ((*m_value)>>m_shift)&0xff; + return ((*m_value)>>m_shift) & 0xff; } template Proxy& operator= (IntegralType v) { - (*m_value)= - (*m_value)&(~((0xff)<