Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r63949 - sandbox/SOC/2010/bit_masks/boost/integer
From: bbartmanboost_at_[hidden]
Date: 2010-07-13 08:20:22


Author: bbartman
Date: 2010-07-13 08:20:21 EDT (Tue, 13 Jul 2010)
New Revision: 63949
URL: http://svn.boost.org/trac/boost/changeset/63949

Log:
working on suppressing hight bits error from msvc 9
Text files modified:
   sandbox/SOC/2010/bit_masks/boost/integer/high_bits_mask.hpp | 18 +++++++++++-------
   1 files changed, 11 insertions(+), 7 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 08:20:21 EDT (Tue, 13 Jul 2010)
@@ -8,12 +8,6 @@
 #ifndef BOOST_HIGH_BITS_MASK_HPP
 #define BOOST_HIGH_BITS_MASK_HPP
 
-#include <boost/config.hpp>
-#include <boost/integer/detail/high_low_impl.hpp>
-#include <boost/integer/integral_mask.hpp>
-#include <boost/type_traits/integral_constant.hpp>
-#include <boost/type_traits/make_unsigned.hpp>
-
 #ifdef BOOST_MSVC
 # if BOOST_MSVC == 1500
 # pragma warning(push)
@@ -21,13 +15,23 @@
 # endif
 #endif
 
+
+#include <boost/config.hpp>
+#include <boost/integer/detail/high_low_impl.hpp>
+#include <boost/integer/integral_mask.hpp>
+#include <boost/type_traits/integral_constant.hpp>
+#include <boost/type_traits/make_unsigned.hpp>
+
+
+
 #include <boost/mpl/bitwise.hpp>
+#include <boost/mpl/size_t.hpp>
 
 #if BOOST_MSVC
 #pragma warning(pop)
 #endif
 
-#include <boost/mpl/size_t.hpp>
+
 
 
 


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