$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r75180 - sandbox/big_number/boost/multiprecision
From: john_at_[hidden]
Date: 2011-10-30 14:39:39
Author: johnmaddock
Date: 2011-10-30 14:39:38 EDT (Sun, 30 Oct 2011)
New Revision: 75180
URL: http://svn.boost.org/trac/boost/changeset/75180
Log:
Fix Clang failures.
Text files modified: 
   sandbox/big_number/boost/multiprecision/mp_number.hpp |    12 ++++++------                            
   1 files changed, 6 insertions(+), 6 deletions(-)
Modified: sandbox/big_number/boost/multiprecision/mp_number.hpp
==============================================================================
--- sandbox/big_number/boost/multiprecision/mp_number.hpp	(original)
+++ sandbox/big_number/boost/multiprecision/mp_number.hpp	2011-10-30 14:39:38 EDT (Sun, 30 Oct 2011)
@@ -129,7 +129,7 @@
       if(contains_self(e))
       {
          self_type temp(e);
-         do_subtract(temp, typename self_type::tag_type());
+         do_subtract(temp, detail::terminal());
       }
       else
       {
@@ -194,7 +194,7 @@
       if(contains_self(e))
       {
          self_type temp(e);
-         do_modulus(temp, typename self_type::tag_type());
+         do_modulus(temp, detail::terminal());
       }
       else
       {
@@ -281,7 +281,7 @@
       if(contains_self(e))
       {
          self_type temp(e);
-         do_divide(detail::mp_exp<detail::terminal, self_type>(temp), typename self_type::tag_type());
+         do_divide(detail::mp_exp<detail::terminal, self_type>(temp), detail::terminal());
       }
       else
       {
@@ -313,7 +313,7 @@
       if(contains_self(e) && !is_self(e))
       {
          self_type temp(e);
-         do_bitwise_and(temp, typename self_type::tag_type());
+         do_bitwise_and(temp, detail::terminal());
       }
       else
       {
@@ -345,7 +345,7 @@
       if(contains_self(e) && !is_self(e))
       {
          self_type temp(e);
-         do_bitwise_or(temp, typename self_type::tag_type());
+         do_bitwise_or(temp, detail::terminal());
       }
       else
       {
@@ -375,7 +375,7 @@
       if(contains_self(e))
       {
          self_type temp(e);
-         do_bitwise_xor(temp, typename self_type::tag_type());
+         do_bitwise_xor(temp, detail::terminal());
       }
       else
       {