mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-01-21 15:50:07 +01:00
Fix #616: remove base_uint::operator&=(uint64 b)
This commit is contained in:
committed by
Luke Dashjr
parent
54fee2d0ce
commit
ab2be34059
@@ -100,13 +100,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;
|
||||
|
||||
Reference in New Issue
Block a user