Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r81169 - sandbox/big_number/boost/multiprecision
From: john_at_[hidden]
Date: 2012-11-04 07:08:38


Author: johnmaddock
Date: 2012-11-04 07:08:37 EST (Sun, 04 Nov 2012)
New Revision: 81169
URL: http://svn.boost.org/trac/boost/changeset/81169

Log:
Fix missing typename.
Text files modified:
   sandbox/big_number/boost/multiprecision/cpp_int.hpp | 2 +-
   1 files changed, 1 insertions(+), 1 deletions(-)

Modified: sandbox/big_number/boost/multiprecision/cpp_int.hpp
==============================================================================
--- sandbox/big_number/boost/multiprecision/cpp_int.hpp (original)
+++ sandbox/big_number/boost/multiprecision/cpp_int.hpp 2012-11-04 07:08:37 EST (Sun, 04 Nov 2012)
@@ -32,7 +32,7 @@
 #pragma warning(disable:4127 4351 4293)
 #endif
 
-template <unsigned MinBits = 0, unsigned MaxBits = 0, cpp_integer_type SignType = signed_magnitude, cpp_int_check_type Checked = unchecked, class Allocator = mpl::if_c<MinBits && (MinBits == MaxBits), void, std::allocator<limb_type> >::type >
+template <unsigned MinBits = 0, unsigned MaxBits = 0, cpp_integer_type SignType = signed_magnitude, cpp_int_check_type Checked = unchecked, class Allocator = typename mpl::if_c<MinBits && (MinBits == MaxBits), void, std::allocator<limb_type> >::type >
 struct cpp_int_backend;
 
 template <unsigned MinBits, unsigned MaxBits, cpp_integer_type SignType, cpp_int_check_type Checked, class Allocator, bool trivial = false>


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