$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r62977 - in sandbox/SOC/2010/bit_masks: boost/integer/details/bft/ext/ext boost/integer/details/bft/ext/fusion lib/integer/test/bft_testing lib/integer/test/bft_testing/compile_pass
From: bbartmanboost_at_[hidden]
Date: 2010-06-15 11:41:40
Author: bbartman
Date: 2010-06-15 11:41:39 EDT (Tue, 15 Jun 2010)
New Revision: 62977
URL: http://svn.boost.org/trac/boost/changeset/62977
Log:
reorganizing header files and directories to be more correctly named and in the correct location
Added:
   sandbox/SOC/2010/bit_masks/boost/integer/details/bft/ext/fusion/
      - copied from r62859, /sandbox/SOC/2010/bit_masks/boost/integer/details/bft/ext/ext/
Removed:
   sandbox/SOC/2010/bit_masks/boost/integer/details/bft/ext/ext/
Text files modified: 
   sandbox/SOC/2010/bit_masks/lib/integer/test/bft_testing/compile_pass/fusion_includes.cpp |    14 ++++++++++++++                          
   sandbox/SOC/2010/bit_masks/lib/integer/test/bft_testing/fusion_integraltion_testing.cpp  |    18 ++++++++++++++++++                      
   2 files changed, 32 insertions(+), 0 deletions(-)
Modified: sandbox/SOC/2010/bit_masks/lib/integer/test/bft_testing/compile_pass/fusion_includes.cpp
==============================================================================
--- sandbox/SOC/2010/bit_masks/lib/integer/test/bft_testing/compile_pass/fusion_includes.cpp	(original)
+++ sandbox/SOC/2010/bit_masks/lib/integer/test/bft_testing/compile_pass/fusion_includes.cpp	2010-06-15 11:41:39 EDT (Tue, 15 Jun 2010)
@@ -0,0 +1,14 @@
+//  Copyright 2010 Brian Bartman.
+//  Distributed under the Boost Software License, Version 1.0.
+//  (See accompanying file LICENSE_1_0.txt or copy at 
+//  http://www.boost.org/LICENSE_1_0.txt)
+
+#include <iostream>
+#include <boost/integer/bitfield_tuple.hpp>
+
+using namespace boost;
+
+// Testing to see if the include paths work correctly.
+#include <boost/integer/details/bft/ext/bitfield_tuple_fusion_includes.hpp>
+
+int main() { return 0; }
Modified: sandbox/SOC/2010/bit_masks/lib/integer/test/bft_testing/fusion_integraltion_testing.cpp
==============================================================================
--- sandbox/SOC/2010/bit_masks/lib/integer/test/bft_testing/fusion_integraltion_testing.cpp	(original)
+++ sandbox/SOC/2010/bit_masks/lib/integer/test/bft_testing/fusion_integraltion_testing.cpp	2010-06-15 11:41:39 EDT (Tue, 15 Jun 2010)
@@ -25,7 +25,25 @@
 
 
 int main() {
+    /*
+    bmg_t bmg;
 
+    BOOST_ASSERT(( (*begin(bmg)) == bmg.get<0>() ));
+    BOOST_ASSERT(( *next(begin(bmg)) == bmg.get<1>() ));
+    BOOST_ASSERT(( *advance_c<2>(begin(bmg)) == bmg.get<2>() ));
+    BOOST_ASSERT(( prior(next(begin(bmg))) == begin(bmg) ));
+    BOOST_ASSERT(( *prior(end(bmg)) == bmg.get<5>() ));
+    BOOST_ASSERT(( at_c<2>(bmg) == bmg.get<2>() ));
+    BOOST_ASSERT(( size(bmg) == 6));
+    BOOST_ASSERT(( distance(begin(bmg), end(bmg)) == 6 ));
+
+    BOOST_MPL_ASSERT((
+        is_same<
+            traits::category_of<bmg_t>::type,
+            random_access_traversal_tag
+        >
+    ));
+*/
 }