$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r67843 - sandbox/statistics/support/boost/assign/v2/chain/aux_
From: erwann.rogard_at_[hidden]
Date: 2011-01-08 21:10:50
Author: e_r
Date: 2011-01-08 21:10:48 EST (Sat, 08 Jan 2011)
New Revision: 67843
URL: http://svn.boost.org/trac/boost/changeset/67843
Log:
rm deprecated in boost/assign/v2
Removed:
   sandbox/statistics/support/boost/assign/v2/chain/aux_/sub.hpp
Deleted: sandbox/statistics/support/boost/assign/v2/chain/aux_/sub.hpp
==============================================================================
--- sandbox/statistics/support/boost/assign/v2/chain/aux_/sub.hpp	2011-01-08 21:10:48 EST (Sat, 08 Jan 2011)
+++ (empty file)
@@ -1,55 +0,0 @@
-// TODO remove file
-/*
-//////////////////////////////////////////////////////////////////////////////
-//  Boost.Assign v2                                                         //
-//                                                                          //
-//  Copyright (C) 2003-2004 Thorsten Ottosen                                //
-//  Copyright (C) 2009 Neil Groves                                          //
-//  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_RANGE_CHAIN_AUX_SUB_ER_2010_HPP
-#define BOOST_ASSIGN_V2_RANGE_CHAIN_AUX_SUB_ER_2010_HPP
-#include <boost/range/iterator_range.hpp> //iterator_range_detail::
-#include <boost/assign/v2/detail/relational_op.hpp>
-
-namespace boost{
-namespace assign{
-namespace v2{
-namespace chain_aux{
-
-    template<typename R>
-    struct sub : R , relational_op_aux::crtp< sub<R> > 
-    {
-
-        typedef R super_t;
-
-        sub(){}
-        sub(super_t const& s):super_t( s ){}
-
-        // Relational op
-        template<typename R1>
-        bool equal_to(const R1& r)const{
-         	return ::boost::iterator_range_detail::equal(
-            	(*this), r );
-		}
-		template<typename R1>
-        bool less_than(const R& r)const{
-         	return ::boost::iterator_range_detail::less_than(
-            	(*this), r );
-		}
-
-    };
-
-	template<typename R>
-    sub<R> make_sub(const R& r){ return sub<R>( r ); }
-
-}// chain_aux
-}// v2
-}// assign
-}// boost
-
-#endif
-*/
\ No newline at end of file