Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r77783 - sandbox/big_number/boost/multiprecision
From: john_at_[hidden]
Date: 2012-04-05 13:20:51


Author: johnmaddock
Date: 2012-04-05 13:20:50 EDT (Thu, 05 Apr 2012)
New Revision: 77783
URL: http://svn.boost.org/trac/boost/changeset/77783

Log:
Fix GCC compile failure
Text files modified:
   sandbox/big_number/boost/multiprecision/tommath.hpp | 2 +-
   1 files changed, 1 insertions(+), 1 deletions(-)

Modified: sandbox/big_number/boost/multiprecision/tommath.hpp
==============================================================================
--- sandbox/big_number/boost/multiprecision/tommath.hpp (original)
+++ sandbox/big_number/boost/multiprecision/tommath.hpp 2012-04-05 13:20:50 EDT (Thu, 05 Apr 2012)
@@ -451,7 +451,7 @@
 
 inline unsigned eval_lsb(const tommath_int& val)
 {
- return mp_cnt_lsb(const_cast<::mp_int*>(&val.data()));
+ return mp_cnt_lsb(const_cast< ::mp_int*>(&val.data()));
 }
 
 template <class Integer>


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk