|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r63987 - sandbox/SOC/2010/bit_masks/boost/integer
From: bbartmanboost_at_[hidden]
Date: 2010-07-13 14:47:46
Author: bbartman
Date: 2010-07-13 14:47:45 EDT (Tue, 13 Jul 2010)
New Revision: 63987
URL: http://svn.boost.org/trac/boost/changeset/63987
Log:
My second attempt for fixng the MSVC9 implementation failed now committing my third
Text files modified:
sandbox/SOC/2010/bit_masks/boost/integer/high_bits_mask.hpp | 7 +------
1 files changed, 1 insertions(+), 6 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:47:45 EDT (Tue, 13 Jul 2010)
@@ -14,11 +14,6 @@
#include <boost/integer/integral_mask.hpp>
#include <boost/type_traits/integral_constant.hpp>
#include <boost/type_traits/make_unsigned.hpp>
-#include <limits>
-
-
-
-
namespace boost {
@@ -37,7 +32,7 @@
mpl::size_t<Width>
>::type::value))
&
- std::numeric_limits<unsigned_type>::max
+ ~( unsigned_type(0) )
);
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