reverted makefile.unix wx-config -- version 0.3.6

This commit is contained in:
--author=Satoshi Nakamoto
2010-07-30 17:36:06 +00:00
committed by Gavin Andresen
parent ec82517c89
commit a75560d828
6 changed files with 778 additions and 715 deletions

View File

@@ -401,7 +401,8 @@ public:
CBigNum& operator>>=(unsigned int shift)
{
// Note: BN_rshift segfaults on 64-bit ubuntu 9.10 if 2^shift is greater than the number
// Note: BN_rshift segfaults on 64-bit ubuntu 9.10 if 2^shift is greater than the number,
// tested OK on 64-bit ubuntu 10.4
if (!BN_rshift(this, this, shift))
throw bignum_error("CBigNum:operator>>= : BN_rshift failed");
return *this;