From ab2be34059126d2eff11dd2bd20d740aea33f67d Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Sun, 19 Feb 2012 19:12:41 +0100 Subject: [PATCH 1/1] Fix #616: remove base_uint::operator&=(uint64 b) --- src/uint256.h | 7 ------- 1 files changed, 0 insertions(+), 7 deletions(-) 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; -- 1.7.1