Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r62978 - in sandbox/SOC/2010/bit_masks/lib/integer/test: . bft_testing
From: bbartmanboost_at_[hidden]
Date: 2010-06-15 11:43:24


Author: bbartman
Date: 2010-06-15 11:43:23 EDT (Tue, 15 Jun 2010)
New Revision: 62978
URL: http://svn.boost.org/trac/boost/changeset/62978

Log:
mistakenly added an extra l to a file time, caught it and now commiting
Added:
   sandbox/SOC/2010/bit_masks/lib/integer/test/bft_testing/fusion_integration_testing.cpp
      - copied unchanged from r62977, /sandbox/SOC/2010/bit_masks/lib/integer/test/bft_testing/fusion_integraltion_testing.cpp
Removed:
   sandbox/SOC/2010/bit_masks/lib/integer/test/bft_testing/fusion_integraltion_testing.cpp
Text files modified:
   sandbox/SOC/2010/bit_masks/lib/integer/test/Jamfile.v2 | 2 +-
   1 files changed, 1 insertions(+), 1 deletions(-)

Modified: sandbox/SOC/2010/bit_masks/lib/integer/test/Jamfile.v2
==============================================================================
--- sandbox/SOC/2010/bit_masks/lib/integer/test/Jamfile.v2 (original)
+++ sandbox/SOC/2010/bit_masks/lib/integer/test/Jamfile.v2 2010-06-15 11:43:23 EDT (Tue, 15 Jun 2010)
@@ -39,7 +39,7 @@
         [ run bft_testing/get_interface_test.cpp ]
         [ run bft_testing/twos_complement_testing.cpp ]
         [ compile bft_testing/compile_pass/fusion_includes.cpp ]
- [ run bft_testing/fusion_integraltion_testing.cpp ]
+ [ run bft_testing/fusion_integration_testing.cpp ]
 
     ;
 

Deleted: 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 2010-06-15 11:43:23 EDT (Tue, 15 Jun 2010)
+++ (empty file)
@@ -1,49 +0,0 @@
-// 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 <boost/integer/bitfield_tuple.hpp>
-#include <boost/assert.hpp>
-
-
-using namespace boost;
-
-struct red;
-struct green;
-struct pink;
-struct blue;
-struct salmon;
-
-typedef bitfield_tuple<
- member<char,red,4>,
- member<unsigned char, green,5>,
- storage<std::size_t>,
- member<int, salmon, 16>
-> test_tuple;
-
-
-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
- >
- ));
-*/
-}
-
-


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