$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r63986 - sandbox/SOC/2010/bit_masks/boost/integer
From: bbartmanboost_at_[hidden]
Date: 2010-07-13 14:43:18
Author: bbartman
Date: 2010-07-13 14:43:18 EDT (Tue, 13 Jul 2010)
New Revision: 63986
URL: http://svn.boost.org/trac/boost/changeset/63986
Log:
working on fixing my MSVC 9 implementation
Text files modified: 
   sandbox/SOC/2010/bit_masks/boost/integer/high_bits_mask.hpp |     6 ++++--                                  
   1 files changed, 4 insertions(+), 2 deletions(-)
Modified: sandbox/SOC/2010/bit_masks/boost/integer/high_bits_mask.hpp
==============================================================================
--- sandbox/SOC/2010/bit_masks/boost/integer/high_bits_mask.hpp	(original)
+++ sandbox/SOC/2010/bit_masks/boost/integer/high_bits_mask.hpp	2010-07-13 14:43:18 EDT (Tue, 13 Jul 2010)
@@ -32,11 +32,13 @@
     template<typename T, unsigned int Width>
     struct evaluate_for_msvc_08 {
         typedef typename make_unsigned<T>::type unsigned_type;
-        BOOST_STATIC_CONSTANT(unsigned_type, val = std::numeric_limits<unsigned_type>::max & (~(mpl::shift_right<
+        BOOST_STATIC_CONSTANT(unsigned_type, val = (~(mpl::shift_right<
             mpl::size_t<~( T(0) )>,
             mpl::size_t<Width>
         >::type::value))
-        ));
+          &
+        std::numeric_limits<unsigned_type>::max
+        );
         typedef integral_constant<T, val>       type;
     };
     // long long specialization