Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r63103 - sandbox/SOC/2010/bit_masks/boost/integer/details/bft
From: bbartmanboost_at_[hidden]
Date: 2010-06-19 13:26:17


Author: bbartman
Date: 2010-06-19 13:26:16 EDT (Sat, 19 Jun 2010)
New Revision: 63103
URL: http://svn.boost.org/trac/boost/changeset/63103

Log:
removing more unnecessary code from repository
Removed:
   sandbox/SOC/2010/bit_masks/boost/integer/details/bft/allocator_allocation_policy.hpp
   sandbox/SOC/2010/bit_masks/boost/integer/details/bft/stack_allocation_policy.hpp

Deleted: sandbox/SOC/2010/bit_masks/boost/integer/details/bft/allocator_allocation_policy.hpp
==============================================================================
--- sandbox/SOC/2010/bit_masks/boost/integer/details/bft/allocator_allocation_policy.hpp 2010-06-19 13:26:16 EDT (Sat, 19 Jun 2010)
+++ (empty file)
@@ -1,25 +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_ALLOC_ALLOC_POLICY_HPP
-#define BOOST_BITFIELD_TUPLE_ALLOC_ALLOC_POLICY_HPP
-
-namespace boost { namespace details {
-
-/** This isn't implemented yet and shouldn't be used just yet.
- * This is eventually going to wrap up an pointer to an allocated object which
- * will be retrievable via a alloc_get function.
- */
-template <typename T, typename Alloc>
-struct allocator_wraper_base_policy {
- T const get_data() const { return _data; }
- T get_data() { return _data; }
- T _data;
-};
-
-}} // end boost::details
-
-#endif

Deleted: sandbox/SOC/2010/bit_masks/boost/integer/details/bft/stack_allocation_policy.hpp
==============================================================================
--- sandbox/SOC/2010/bit_masks/boost/integer/details/bft/stack_allocation_policy.hpp 2010-06-19 13:26:16 EDT (Sat, 19 Jun 2010)
+++ (empty file)
@@ -1,52 +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_STACK_ALLOC_POLICY_HPP
-#define BOOST_BITFIELD_TUPLE_STACK_ALLOC_POLICY_HPP
-
-namespace boost { namespace details {
-
-/** This structure is going to be used when an allocator isn't assked for.
- * This means that the entire class is allocated on the stack.
- */
-template <typename T>
-struct stack_alloc_base_policy {
-
- /** Default Constructor. */
- stack_alloc_base_policy()
- :_data()
- { }
-
- /** Copy constructor. */
- stack_alloc_base_policy( stack_alloc_base_policy<T> const& x )
- :_data( x._data )
- { }
-
- /** Value constructor. */
- stack_alloc_base_policy( T x )
- :_data( x )
- { }
-
- stack_alloc_base_policy<T> const& operator=( stack_alloc_base_policy const& x ) {
- _data = x._data;
- return *this;
- }
-
- /** get_data () this function exists within this class and the
- * allocator_base_policy.
- * Returns a copy of _data.
- */
- //@{
- T const& get_data() const { return _data; }
- T& get_data() { return _data; }
- //@}
-
- T _data;
-};
-
-}} // 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