Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r63289 - in sandbox/SOC/2010/bit_masks/boost/integer/details: . bft
From: bbartmanboost_at_[hidden]
Date: 2010-06-24 12:34:11


Author: bbartman
Date: 2010-06-24 12:34:09 EDT (Thu, 24 Jun 2010)
New Revision: 63289
URL: http://svn.boost.org/trac/boost/changeset/63289

Log:
reorganizing thing and renaming files so that everything fits to gather in a way that is more reconizible
Added:
   sandbox/SOC/2010/bit_masks/boost/integer/details/bft/align.hpp
      - copied unchanged from r63287, /sandbox/SOC/2010/bit_masks/boost/integer/details/align.hpp
   sandbox/SOC/2010/bit_masks/boost/integer/details/bft/filler.hpp
      - copied unchanged from r63263, /sandbox/SOC/2010/bit_masks/boost/integer/details/filler.hpp
   sandbox/SOC/2010/bit_masks/boost/integer/details/bft/flag.hpp
      - copied, changed from r63263, /sandbox/SOC/2010/bit_masks/boost/integer/details/bit_flag.hpp
   sandbox/SOC/2010/bit_masks/boost/integer/details/bft/member.hpp
      - copied unchanged from r63263, /sandbox/SOC/2010/bit_masks/boost/integer/details/member.hpp
   sandbox/SOC/2010/bit_masks/boost/integer/details/bft/storage.hpp
      - copied unchanged from r63263, /sandbox/SOC/2010/bit_masks/boost/integer/details/storage.hpp
Removed:
   sandbox/SOC/2010/bit_masks/boost/integer/details/align.hpp
   sandbox/SOC/2010/bit_masks/boost/integer/details/bit_flag.hpp
   sandbox/SOC/2010/bit_masks/boost/integer/details/filler.hpp
   sandbox/SOC/2010/bit_masks/boost/integer/details/member.hpp
   sandbox/SOC/2010/bit_masks/boost/integer/details/storage.hpp
Text files modified:
   sandbox/SOC/2010/bit_masks/boost/integer/details/bft/arg_parse_impl.hpp | 8 +++++---
   sandbox/SOC/2010/bit_masks/boost/integer/details/bft/flag.hpp | 2 --
   sandbox/SOC/2010/bit_masks/boost/integer/details/bitfield_tuple_impl.hpp | 3 ---
   3 files changed, 5 insertions(+), 8 deletions(-)

Deleted: sandbox/SOC/2010/bit_masks/boost/integer/details/align.hpp
==============================================================================
--- sandbox/SOC/2010/bit_masks/boost/integer/details/align.hpp 2010-06-24 12:34:09 EDT (Thu, 24 Jun 2010)
+++ (empty file)
@@ -1,22 +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_ALIGNED_HPP
-#define BOOST_BITFIELD_TUPLE_ALIGNED_HPP
-#include <cstddef>
-
-namespace boost {
-
-
-/** Allows the alignment to be set to the next bit which has the same alignment
- * as the as AlignTo specifies relative to the current offset in bits.
- */
-template <std::size_t AlignTo>
-struct bit_align;
-
-} // end boost
-
-#endif

Modified: sandbox/SOC/2010/bit_masks/boost/integer/details/bft/arg_parse_impl.hpp
==============================================================================
--- sandbox/SOC/2010/bit_masks/boost/integer/details/bft/arg_parse_impl.hpp (original)
+++ sandbox/SOC/2010/bit_masks/boost/integer/details/bft/arg_parse_impl.hpp 2010-06-24 12:34:09 EDT (Thu, 24 Jun 2010)
@@ -14,10 +14,12 @@
 #include <boost/mpl/arithmetic.hpp>
 #include <boost/mpl/find_if.hpp>
 
+#include <boost/integer/details/bft/storage.hpp>
+#include <boost/integer/details/bft/member.hpp>
 #include <boost/integer/details/bft/name_lookup.hpp>
-#include <boost/integer/details/bit_flag.hpp>
-#include <boost/integer/details/filler.hpp>
-#include <boost/integer/details/align.hpp>
+#include <boost/integer/details/bft/flag.hpp>
+#include <boost/integer/details/bft/filler.hpp>
+#include <boost/integer/details/bft/align.hpp>
 
 
 

Copied: sandbox/SOC/2010/bit_masks/boost/integer/details/bft/flag.hpp (from r63263, /sandbox/SOC/2010/bit_masks/boost/integer/details/bit_flag.hpp)
==============================================================================
--- /sandbox/SOC/2010/bit_masks/boost/integer/details/bit_flag.hpp (original)
+++ sandbox/SOC/2010/bit_masks/boost/integer/details/bft/flag.hpp 2010-06-24 12:34:09 EDT (Thu, 24 Jun 2010)
@@ -11,8 +11,6 @@
 
 namespace boost {
 
-
-
 /** Allows the user to simplify the creation of a bool member by simply
  * requiring that they specify a name and assuming that if the flag is used
  * that the underlying type's width is going to be 1.

Deleted: sandbox/SOC/2010/bit_masks/boost/integer/details/bit_flag.hpp
==============================================================================
--- sandbox/SOC/2010/bit_masks/boost/integer/details/bit_flag.hpp 2010-06-24 12:34:09 EDT (Thu, 24 Jun 2010)
+++ (empty file)
@@ -1,27 +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_FLAG_FIELD_HPP
-#define BOOST_FLAG_FIELD_HPP
-
-
-
-namespace boost {
-
-
-
-/** Allows the user to simplify the creation of a bool member by simply
- * requiring that they specify a name and assuming that if the flag is used
- * that the underlying type's width is going to be 1.
- */
-template <typename ReturnType>
-struct flag;
-
-
-
-} // end boost
-
-#endif

Modified: sandbox/SOC/2010/bit_masks/boost/integer/details/bitfield_tuple_impl.hpp
==============================================================================
--- sandbox/SOC/2010/bit_masks/boost/integer/details/bitfield_tuple_impl.hpp (original)
+++ sandbox/SOC/2010/bit_masks/boost/integer/details/bitfield_tuple_impl.hpp 2010-06-24 12:34:09 EDT (Thu, 24 Jun 2010)
@@ -7,10 +7,7 @@
 #ifndef BOOST_BITFIELD_TUPLE_IMPL_HPP
 #define BOOST_BITFIELD_TUPLE_IMPL_HPP
 
-
 // Integer Includes.
-#include <boost/integer/details/storage.hpp>
-#include <boost/integer/details/member.hpp>
 #include <boost/integer/bits_mask.hpp>
 #include <boost/integer/bit_width.hpp>
 

Deleted: sandbox/SOC/2010/bit_masks/boost/integer/details/filler.hpp
==============================================================================
--- sandbox/SOC/2010/bit_masks/boost/integer/details/filler.hpp 2010-06-24 12:34:09 EDT (Thu, 24 Jun 2010)
+++ (empty file)
@@ -1,21 +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_FILLER_HPP
-#define BOOST_BITFIELD_TUPLE_FILLER_HPP
-#include <cstddef>
-
-namespace boost {
-
-/** Template is used to specify a size or ammound of bits which is
- * not to be used but instead to be filled with padding or unused bits.
- */
-template < std::size_t N>
-struct filler;
-
-} // end boost
-
-#endif

Deleted: sandbox/SOC/2010/bit_masks/boost/integer/details/member.hpp
==============================================================================
--- sandbox/SOC/2010/bit_masks/boost/integer/details/member.hpp 2010-06-24 12:34:09 EDT (Thu, 24 Jun 2010)
+++ (empty file)
@@ -1,33 +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_MEMBER_FIELD_HPP
-#define BOOST_MEMBER_FIELD_HPP
-#include <cstddef>
-#include <boost/type_traits.hpp>
-#include <boost/static_assert.hpp>
-#include <boost/mpl/size_t.hpp>
-#include <boost/integer/bit_width.hpp>
-
-
-namespace boost {
-
-
-
-/** The purpose of the member struct is to provide a simple way of passing
- * parameters into a bitfield_tuple or bit_mask_tuple. The use of this is
- * specifically to associate a group of parameters to gather within a type
- * and make it easier for the data structure to figure out what to do with
- * those parameter.
- */
-template <typename ReturnType, typename Name, std::size_t FieldWidth>
-struct member;
-
-
-
-} // end boost
-
-#endif

Deleted: sandbox/SOC/2010/bit_masks/boost/integer/details/storage.hpp
==============================================================================
--- sandbox/SOC/2010/bit_masks/boost/integer/details/storage.hpp 2010-06-24 12:34:09 EDT (Thu, 24 Jun 2010)
+++ (empty file)
@@ -1,21 +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_BIT_MASKS_TAGGED_HPP
-#define BOOST_BIT_MASKS_TAGGED_HPP
-
-namespace boost {
-
-
-/** Storage type used for moving the type to be used for interenal storage
- * around within the template parameters of a bitfield_tuple.
- */
-template < typename StorageType>
-struct storage;
-
-} // end boost
-
-#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