$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r62588 - sandbox/SOC/2010/bit_masks/boost/integer/details
From: bbartmanboost_at_[hidden]
Date: 2010-06-08 13:28:33
Author: bbartman
Date: 2010-06-08 13:28:32 EDT (Tue, 08 Jun 2010)
New Revision: 62588
URL: http://svn.boost.org/trac/boost/changeset/62588
Log:
working on implementing the internals of the bitfield_tuple class
Text files modified: 
   sandbox/SOC/2010/bit_masks/boost/integer/details/member.hpp  |     4 ++--                                    
   sandbox/SOC/2010/bit_masks/boost/integer/details/storage.hpp |     2 +-                                      
   2 files changed, 3 insertions(+), 3 deletions(-)
Modified: sandbox/SOC/2010/bit_masks/boost/integer/details/member.hpp
==============================================================================
--- sandbox/SOC/2010/bit_masks/boost/integer/details/member.hpp	(original)
+++ sandbox/SOC/2010/bit_masks/boost/integer/details/member.hpp	2010-06-08 13:28:32 EDT (Tue, 08 Jun 2010)
@@ -20,8 +20,8 @@
 
 template <typename ReturnType, typename Name, std::size_t FieldWidth>
 struct member {
-    typedef ReturnType          return_type;
-    typedef Name                name_type;
+    typedef ReturnType return_type;
+    typedef Name name_type;
     BOOST_STATIC_CONSTANT(std::size_t, field_width  = FieldWidth);
 };
 
Modified: sandbox/SOC/2010/bit_masks/boost/integer/details/storage.hpp
==============================================================================
--- sandbox/SOC/2010/bit_masks/boost/integer/details/storage.hpp	(original)
+++ sandbox/SOC/2010/bit_masks/boost/integer/details/storage.hpp	2010-06-08 13:28:32 EDT (Tue, 08 Jun 2010)
@@ -15,7 +15,7 @@
 /** This forces the storage policy to allocate using the stack. 
  *  in stead of using an allocator.
  */
-struct storage_policy_stack;
+struct storage_policy_stack { };
 
 /** This structure is used for specifying the storage type within
  *  bitfield tuple and bit_mask_tuple.