aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPieter Wuille <pieter.wuille@gmail.com>2012-02-19 19:12:41 +0100
committerLuke Dashjr <luke-jr+git@utopios.org>2012-02-27 12:55:15 -0500
commitab2be34059126d2eff11dd2bd20d740aea33f67d (patch)
treef886a2d30f25f719b0e05ae1f75564805046eb4a
parent54fee2d0ce1e4b389700cd9d043f9475d567cc25 (diff)
downloadbitcoin-ab2be34059126d2eff11dd2bd20d740aea33f67d.tar.xz
Fix #616: remove base_uint::operator&=(uint64 b)
-rw-r--r--src/uint256.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/uint256.h b/src/uint256.h
index 3e20201387..ae263346a8 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;