diff options
author | Gavin Andresen <gavinandresen@gmail.com> | 2012-02-22 11:00:38 -0500 |
---|---|---|
committer | Gavin Andresen <gavinandresen@gmail.com> | 2012-02-22 11:00:38 -0500 |
commit | e1bad25feec4ac7d26beb39cc61b62c2a0129cc2 (patch) | |
tree | 713cc35cd06454479bb8b66233179d56e3bd1829 | |
parent | de737806b502dc86275d03f4aed7a83dcad67cce (diff) | |
parent | 46245b4782d3fd0fee3dfb554af5beab041faecf (diff) |
Merge branch 'fix_616' of https://github.com/sipa/bitcoin
-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 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; |