From: Pieter Wuille Date: Sun, 19 Feb 2012 18:12:41 +0000 (+0100) Subject: Fix #616: remove base_uint::operator&=(uint64 b) X-Git-Tag: v0.4.0-unstable~129^2~1^2^2~2^2^2~59 X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=commitdiff_plain;h=ab2be34059126d2eff11dd2bd20d740aea33f67d Fix #616: remove base_uint::operator&=(uint64 b) --- diff --git a/src/uint256.h b/src/uint256.h index 3e20201..ae26334 100644 --- a/src/uint256.h +++ b/src/uint256.h @@ -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;