$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r64125 - sandbox/SOC/2010/bit_masks/lib/integer/test/bft_testing
From: bbartmanboost_at_[hidden]
Date: 2010-07-18 11:03:18
Author: bbartman
Date: 2010-07-18 11:03:17 EDT (Sun, 18 Jul 2010)
New Revision: 64125
URL: http://svn.boost.org/trac/boost/changeset/64125
Log:
working on creating the pointer member type for bitfield_tuple the first working draft is completed.
Text files modified: 
   sandbox/SOC/2010/bit_masks/lib/integer/test/bft_testing/pointer_member_test.cpp |     9 +--------                               
   1 files changed, 1 insertions(+), 8 deletions(-)
Modified: sandbox/SOC/2010/bit_masks/lib/integer/test/bft_testing/pointer_member_test.cpp
==============================================================================
--- sandbox/SOC/2010/bit_masks/lib/integer/test/bft_testing/pointer_member_test.cpp	(original)
+++ sandbox/SOC/2010/bit_masks/lib/integer/test/bft_testing/pointer_member_test.cpp	2010-07-18 11:03:17 EDT (Sun, 18 Jul 2010)
@@ -24,16 +24,9 @@
     t1.get<rd>() = &i;
     BOOST_TEST(*t1.get<rd>() == 0);
     }
+
     // testing member<int*,rd, width of pointer-2>
     {
-
-    // int i = 0;
-    // test_type_2 t2;
-    // main issue with this is that the pointer type may not be retrieved
-    // correctly using bitfield however this shouldn't be an issue if I provide
-    // a specialization for bitfield to operate on pointer types.
-    // t2.get<rd>() = &i;
-    // BOOST_TEST( t2.get<rd>() == &i );
     }
     return boost::report_errors();
 }