aboutsummaryrefslogtreecommitdiff
path: root/src/uint256.h
diff options
context:
space:
mode:
authorLuke Dashjr <luke-jr+git@utopios.org>2012-03-03 13:59:31 -0500
committerLuke Dashjr <luke-jr+git@utopios.org>2012-03-03 13:59:31 -0500
commit9cf600e6dabe9133a0c25e87babc42e3a0e1a29a (patch)
treeb81f7aff9d930cd4baede522cfc713c8467db364 /src/uint256.h
parent6fb186f4bbeb34b4e5c22f909e8d0a1a877f1c44 (diff)
parent7013cc3d9710c0a03f6587c854e4e50c358ea70c (diff)
downloadbitcoin-9cf600e6dabe9133a0c25e87babc42e3a0e1a29a.tar.xz
Merge branch '0.5.0.x' into 0.5.x
Diffstat (limited to 'src/uint256.h')
-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;