diff options
author | --author=Satoshi Nakamoto <satoshin@gmx.com> | 2010-07-30 17:36:06 +0000 |
---|---|---|
committer | Gavin Andresen <gavinandresen@gmail.com> | 2010-07-30 17:36:06 +0000 |
commit | a75560d828464c3f1138f52cf247e956fc8f937d (patch) | |
tree | 2b2701c9c2a0a557bd8ad8b4874b2491f6cea0b0 /bignum.h | |
parent | ec82517c8919f9cb7194511dc322a2575745e39e (diff) |
reverted makefile.unix wx-config -- version 0.3.6v0.3.6
Diffstat (limited to 'bignum.h')
-rw-r--r-- | bignum.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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; |