Work in progress...
This commit is contained in:
parent
24bad9f3d1
commit
4e010da54b
10 changed files with 231 additions and 257 deletions
|
@ -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
|
||||
*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue