aboutsummaryrefslogtreecommitdiff
path: root/bignum.h
diff options
context:
space:
mode:
authors_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b>2010-07-29 20:27:12 +0000
committers_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b>2010-07-29 20:27:12 +0000
commit757f0769d8360ea043f469f3a35f6ec204740446 (patch)
tree28a5c8cd9936e3d6ae559efa87e5f1d571276540 /bignum.h
parent17b2740289268c037c5adb5956989f134982bf80 (diff)
downloadbitcoin-757f0769d8360ea043f469f3a35f6ec204740446.tar.xz
reverted makefile.unix wx-config -- version 0.3.6
git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@119 1a98c847-1fd6-4fd8-948a-caf3550aa51b
Diffstat (limited to 'bignum.h')
-rw-r--r--bignum.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/bignum.h b/bignum.h
index 61ba3fa03b..44dfd97909 100644
--- a/bignum.h
+++ b/bignum.h
@@ -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;