Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r71070 - sandbox/assign_v2/boost/assign/v2/ref/array
From: erwann.rogard_at_[hidden]
Date: 2011-04-06 23:09:07


Author: e_r
Date: 2011-04-06 23:09:06 EDT (Wed, 06 Apr 2011)
New Revision: 71070
URL: http://svn.boost.org/trac/boost/changeset/71070

Log:
upd assign_v2
Removed:
   sandbox/assign_v2/boost/assign/v2/ref/array/as_arg_list.hpp

Deleted: sandbox/assign_v2/boost/assign/v2/ref/array/as_arg_list.hpp
==============================================================================
--- sandbox/assign_v2/boost/assign/v2/ref/array/as_arg_list.hpp 2011-04-06 23:09:06 EDT (Wed, 06 Apr 2011)
+++ (empty file)
@@ -1,54 +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_REF_ARRAY_AS_ARG_LIST_ER_2010_HPP
-#define BOOST_ASSIGN_V2_REF_ARRAY_AS_ARG_LIST_ER_2010_HPP
-#include <boost/assign/v2/ref/array/interface.hpp>
-#include <boost/assign/v2/ref/array/size_type.hpp>
-#include <boost/utility/enable_if.hpp>
-
-namespace boost{
-namespace assign{
-namespace v2{
-namespace ref{
-namespace array_aux{
-
- // --- Implementation --- //
-
- template<size_type I, typename F, typename Impl, typename D>
- typename boost::enable_if_c<
- D::static_size == I
- >::type
- as_arg_list( F const& f, interface<Impl, D> const& array)
- {}
-
- template<size_type I, typename F, typename Impl, typename D>
- typename boost::enable_if_c< I < D::static_size >::type
- as_arg_list(F const& f , interface<Impl, D> const& array)
- {
- f( array[ I ].get() );
- as_arg_list<I + 1>( f, array );
- }
-
- // --- User interface --- //
-
- template<typename F, typename Impl, typename D>
- void as_arg_list(F const& f , interface<Impl, D> const& array)
- {
- as_arg_list<0>( f, array );
- }
-
-}// array_aux
-using array_aux::as_arg_list;
-}// ref
-}// v2
-}// assign
-}// boost
-
-#endif // BOOST_ASSIGN_V2_REF_ARRAY_AS_ARG_LIST_ER_2010_HPP


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