Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r62645 - in sandbox/SOC/2010/bit_masks/boost/integer: . details/bit_mask_group_fusion_ext
From: bbartmanboost_at_[hidden]
Date: 2010-06-09 07:06:08


Author: bbartman
Date: 2010-06-09 07:06:07 EDT (Wed, 09 Jun 2010)
New Revision: 62645
URL: http://svn.boost.org/trac/boost/changeset/62645

Log:
fixed a const issue with bit_mask_group
Text files modified:
   sandbox/SOC/2010/bit_masks/boost/integer/bit_mask_group.hpp | 4 ++--
   sandbox/SOC/2010/bit_masks/boost/integer/details/bit_mask_group_fusion_ext/bit_mask_group_iterator.hpp | 2 +-
   2 files changed, 3 insertions(+), 3 deletions(-)

Modified: sandbox/SOC/2010/bit_masks/boost/integer/bit_mask_group.hpp
==============================================================================
--- sandbox/SOC/2010/bit_masks/boost/integer/bit_mask_group.hpp (original)
+++ sandbox/SOC/2010/bit_masks/boost/integer/bit_mask_group.hpp 2010-06-09 07:06:07 EDT (Wed, 09 Jun 2010)
@@ -97,7 +97,7 @@
     //@{
     template <typename Name>
     inline typename mpl::at<named_mask_map, Name>::type::value_type
- get() {
+ get() const {
         return mpl::at<named_mask_map, Name>::type::value;
     }
 
@@ -106,7 +106,7 @@
         mask_vector,
         integral_constant<unsigned int, Index>
>::type::value_type
- get() {
+ get() const {
         return mpl::at<
             mask_vector,
             integral_constant<unsigned int, Index>

Modified: sandbox/SOC/2010/bit_masks/boost/integer/details/bit_mask_group_fusion_ext/bit_mask_group_iterator.hpp
==============================================================================
--- sandbox/SOC/2010/bit_masks/boost/integer/details/bit_mask_group_fusion_ext/bit_mask_group_iterator.hpp (original)
+++ sandbox/SOC/2010/bit_masks/boost/integer/details/bit_mask_group_fusion_ext/bit_mask_group_iterator.hpp 2010-06-09 07:06:07 EDT (Wed, 09 Jun 2010)
@@ -49,7 +49,7 @@
             Iterator::index::value
>::type type;
 
- static type call(Iterator const&){
+ static type call(Iterator const&) {
             return 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