diff options
| author | Pieter Wuille <[email protected]> | 2012-02-19 19:12:41 +0100 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2012-02-19 19:12:41 +0100 |
| commit | 46245b4782d3fd0fee3dfb554af5beab041faecf (patch) | |
| tree | f01314a90ca7991e85fb16608aea3c6fac17567a /src | |
| parent | Merge pull request #863 from sipa/bn2mpifix (diff) | |
| download | discoin-46245b4782d3fd0fee3dfb554af5beab041faecf.tar.xz discoin-46245b4782d3fd0fee3dfb554af5beab041faecf.zip | |
Fix #616: remove base_uint::operator&=(uint64 b)
Diffstat (limited to 'src')
| -rw-r--r-- | src/uint256.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/uint256.h b/src/uint256.h index 5b1ba9f6f..caf6fa118 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; |