Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r62860 - in sandbox/SOC/2010/bit_masks/boost/integer/details: . bft
From: bbartmanboost_at_[hidden]
Date: 2010-06-12 12:50:23


Author: bbartman
Date: 2010-06-12 12:50:23 EDT (Sat, 12 Jun 2010)
New Revision: 62860
URL: http://svn.boost.org/trac/boost/changeset/62860

Log:
moved element type into the bft folder
Added:
   sandbox/SOC/2010/bit_masks/boost/integer/details/bft/bft_element.hpp
      - copied unchanged from r62857, /sandbox/SOC/2010/bit_masks/boost/integer/details/bft_element.hpp
Removed:
   sandbox/SOC/2010/bit_masks/boost/integer/details/bft_element.hpp

Deleted: sandbox/SOC/2010/bit_masks/boost/integer/details/bft_element.hpp
==============================================================================
--- sandbox/SOC/2010/bit_masks/boost/integer/details/bft_element.hpp 2010-06-12 12:50:23 EDT (Sat, 12 Jun 2010)
+++ (empty file)
@@ -1,30 +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)
-
-#ifndef BOOST_BITFIELD_TUPLE_BFT_ELEMENT_HPP
-#define BOOST_BITFIELD_TUPLE_BFT_ELEMENT_HPP
-
-namespace boost { namespace details {
-
-/** This is the type which sits inside the mpl vector type.
- * This has all information for constructing a bitfield.
- */
-template < typename ReturnType,
- typename NameType,
- typename Offset,
- typename FieldWidth
->
-struct bitfield_element_ {
- typedef ReturnType return_type;
- typedef NameType name_type;
- typedef Offset offset;
- typedef FieldWidth field_width;
- typedef bitfield_element_<return_type, name_type, offset, field_width> type;
-};
-
-
-}} // end boost::details
-
-#endif


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