$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r67844 - sandbox/statistics/support/boost/assign/v2/detail/mpl
From: erwann.rogard_at_[hidden]
Date: 2011-01-08 21:12:01
Author: e_r
Date: 2011-01-08 21:12:00 EST (Sat, 08 Jan 2011)
New Revision: 67844
URL: http://svn.boost.org/trac/boost/changeset/67844
Log:
rm deprecated in boost/assign/v2
Removed:
   sandbox/statistics/support/boost/assign/v2/detail/mpl/always.hpp
   sandbox/statistics/support/boost/assign/v2/detail/mpl/uniform_vector.hpp
Deleted: sandbox/statistics/support/boost/assign/v2/detail/mpl/always.hpp
==============================================================================
--- sandbox/statistics/support/boost/assign/v2/detail/mpl/always.hpp	2011-01-08 21:12:00 EST (Sat, 08 Jan 2011)
+++ (empty file)
@@ -1,41 +0,0 @@
-//////////////////////////////////////////////////////////////////////////////
-//  Boost.Assign v2                                                         //
-//                                                                          //
-//  Copyright (C) 2003-2004 Thorsten Ottosen                                //
-//  Copyright (C) 2010 Erwann Rogard                                        //
-//  Use, modification and distribution are subject to 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_ASSIGN_V2_DETAIL_MPL_ALWAYS_ER_2010_HPP
-#define BOOST_ASSIGN_V2_DETAIL_MPL_ALWAYS_ER_2010_HPP
-#include <boost/mpl/always.hpp>
-#include <boost/mpl/apply.hpp>
-#include <boost/mpl/identity.hpp>
-
-// TODO remove file
-
-namespace boost{
-namespace assign{ 
-namespace v2{
-namespace mpl{
-	
-    // This is a variant of mpl::always that is also nullary.
-
-	template<typename T>
-	struct always : boost::mpl::always<T>{};
-    
-}// mpl
-}// v2
-}// assign
-namespace mpl{
-
-    template<typename T>
-    struct apply0< 
-    	assign::v2::mpl::always<T> 
-    > : boost::mpl::identity<T>{};
-
-}// mpl
-}// boost
-
-#endif
Deleted: sandbox/statistics/support/boost/assign/v2/detail/mpl/uniform_vector.hpp
==============================================================================
--- sandbox/statistics/support/boost/assign/v2/detail/mpl/uniform_vector.hpp	2011-01-08 21:12:00 EST (Sat, 08 Jan 2011)
+++ (empty file)
@@ -1,53 +0,0 @@
-//////////////////////////////////////////////////////////////////////////////
-//  Boost.Assign v2                                                         //
-//                                                                          //
-//  Copyright (C) 2003-2004 Thorsten Ottosen                                //
-//  Copyright (C) 2010 Erwann Rogard                                        //
-//  Use, modification and distribution are subject to 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_ASSIGN_V2_DETAIL_MPL_UNIFORM_VECTOR_ER_2010_HPP
-#define BOOST_ASSIGN_V2_DETAIL_MPL_UNIFORM_VECTOR_ER_2010_HPP
-#include <boost/mpl/vector/vector0.hpp>
-#include <boost/mpl/vector.hpp>
-#include <boost/mpl/push_back.hpp>
-
-// TODO remove file
-
-namespace boost{
-namespace assign{
-namespace v2{
-namespace mpl{
-namespace uniform_vector_aux{
-
-	template<std::size_t N,typename Seq, typename T>
-    struct cont : cont< 
-    	N-1,
-    	typename boost::mpl::push_back<
-    		Seq,
-            T
-        >::type,
-        T
-    >{};
-
-	template<typename Seq,typename T>
-	struct cont<0, Seq, T>{
-		typedef Seq type;    
-    };
-
-}// uniform_vector_aux
-
-template<std::size_t N, typename T>
-struct uniform_vector : uniform_vector_aux::cont<
-	N,
-    boost::mpl::vector0<>,
-    T
->{};
-
-}// mpl
-}// v2
-}// assign
-}// boost
-
-#endif