Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r63290 - sandbox/SOC/2010/bit_masks/boost/bitfield
From: bbartmanboost_at_[hidden]
Date: 2010-06-24 12:47:23


Author: bbartman
Date: 2010-06-24 12:47:22 EDT (Thu, 24 Jun 2010)
New Revision: 63290
URL: http://svn.boost.org/trac/boost/changeset/63290

Log:
made a slight change to bitfield and removed the unsigned requirement from the storage type
Text files modified:
   sandbox/SOC/2010/bit_masks/boost/bitfield/bitfield.hpp | 2 +-
   1 files changed, 1 insertions(+), 1 deletions(-)

Modified: sandbox/SOC/2010/bit_masks/boost/bitfield/bitfield.hpp
==============================================================================
--- sandbox/SOC/2010/bit_masks/boost/bitfield/bitfield.hpp (original)
+++ sandbox/SOC/2010/bit_masks/boost/bitfield/bitfield.hpp 2010-06-24 12:47:22 EDT (Thu, 24 Jun 2010)
@@ -159,7 +159,7 @@
     private:
 
         // the storage type must be unsigned
- BOOST_STATIC_ASSERT( std::numeric_limits<storage_type>::is_signed==false );
+ // BOOST_STATIC_ASSERT( std::numeric_limits<storage_type>::is_signed==false );
         // first and last index must be on the range corresponding to the storage_type
         BOOST_STATIC_ASSERT( F < 8*sizeof(storage_type) );
         BOOST_STATIC_ASSERT( L < 8*sizeof(storage_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