diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2012-02-19 19:12:41 +0100 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2012-02-19 19:12:41 +0100 |
commit | 46245b4782d3fd0fee3dfb554af5beab041faecf (patch) | |
tree | f01314a90ca7991e85fb16608aea3c6fac17567a /src/uint256.h | |
parent | e0b8d459b189ee2b7e95a47b217e4b02bfb523b3 (diff) |
Fix #616: remove base_uint::operator&=(uint64 b)
Diffstat (limited to 'src/uint256.h')
-rw-r--r-- | src/uint256.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/uint256.h b/src/uint256.h index 5b1ba9f6f7..caf6fa118b 100644 --- a/src/uint256.h +++ b/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; |