Fix #616: remove base_uint::operator&=(uint64 b)
authorPieter Wuille <pieter.wuille@gmail.com>
Sun, 19 Feb 2012 18:12:41 +0000 (19:12 +0100)
committerLuke Dashjr <luke-jr+git@utopios.org>
Mon, 27 Feb 2012 17:55:15 +0000 (12:55 -0500)
src/uint256.h

index 3e20201..ae26334 100644 (file)
@@ -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;