Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r63972 - sandbox/SOC/2010/bit_masks/boost/integer
From: bbartmanboost_at_[hidden]
Date: 2010-07-13 13:58:09


Author: bbartman
Date: 2010-07-13 13:58:09 EDT (Tue, 13 Jul 2010)
New Revision: 63972
URL: http://svn.boost.org/trac/boost/changeset/63972

Log:
attempting to fix a warning rather then suppress it
Text files modified:
   sandbox/SOC/2010/bit_masks/boost/integer/high_bits_mask.hpp | 12 +++++++++---
   1 files changed, 9 insertions(+), 3 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 13:58:09 EDT (Tue, 13 Jul 2010)
@@ -31,13 +31,19 @@
 #ifdef BOOST_MSVC
 #pragma warning(push)
 #pragma warning(disable : 4309)
-#pragma warning(disable : 4305)
+// #pragma warning(disable : 4305)
 namespace detail {
     template<typename T, unsigned int Width>
     struct evaluate_for_msvc_08 {
         typedef typename make_unsigned<T>::type unsigned_type;
- BOOST_STATIC_CONSTANT(T, val = (~(mpl::shift_right< mpl::size_t< ~(T(0))
- >, mpl::size_t<Width> >::type::value) ));
+ BOOST_STATIC_CONSTANT(T, val = (~(mpl::shift_right<
+ integral_constant<
+ unsigned_type,
+ ~(T(0))
+ >,
+ mpl::size_t<Width>
+ >::type::value)
+ ));
         typedef integral_constant<T, val> type;
     };
 }


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