aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPieter Wuille <pieter.wuille@gmail.com>2012-02-19 19:12:41 +0100
committerPieter Wuille <pieter.wuille@gmail.com>2012-02-19 19:12:41 +0100
commit46245b4782d3fd0fee3dfb554af5beab041faecf (patch)
treef01314a90ca7991e85fb16608aea3c6fac17567a /src
parente0b8d459b189ee2b7e95a47b217e4b02bfb523b3 (diff)
downloadbitcoin-46245b4782d3fd0fee3dfb554af5beab041faecf.tar.xz
Fix #616: remove base_uint::operator&=(uint64 b)
Diffstat (limited to 'src')
-rw-r--r--src/uint256.h7
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;