Work in progress...
This commit is contained in:
@@ -231,15 +231,6 @@ public:
|
||||
*/
|
||||
inline operator bool() const throw() { return (_a != 0); }
|
||||
|
||||
/**
|
||||
* @return Sum of all bytes in address
|
||||
*/
|
||||
inline unsigned int sum() const
|
||||
throw()
|
||||
{
|
||||
return (unsigned int)(((_a >> 32) & 0xff) + ((_a >> 24) & 0xff) + ((_a >> 16) & 0xff) + ((_a >> 8) & 0xff) + (_a & 0xff));
|
||||
}
|
||||
|
||||
/**
|
||||
* Check if this address is reserved
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user