Browse Source

Fix #616: remove base_uint::operator&=(uint64 b)

pull/145/head
Pieter Wuille 12 years ago
parent
commit
46245b4782
  1. 7
      src/uint256.h

7
src/uint256.h

@ -92,13 +92,6 @@ public:
return *this;
}
base_uint& operator&=(uint64 b)
{
pn[0] &= (unsigned int)b;
pn[1] &= (unsigned int)(b >> 32);
return *this;
}
base_uint& operator|=(uint64 b)
{
pn[0] |= (unsigned int)b;

Loading…
Cancel
Save