Boost logo

Boost-Commit :

From: joel_at_[hidden]
Date: 2007-10-21 01:51:32


Author: djowel
Date: 2007-10-21 01:51:31 EDT (Sun, 21 Oct 2007)
New Revision: 40257
URL: http://svn.boost.org/trac/boost/changeset/40257

Log:
missing copyright
Text files modified:
   branches/fusion/2_1/boost/fusion/algorithm/iteration/detail/fold.hpp | 13 ++++++++++---
   1 files changed, 10 insertions(+), 3 deletions(-)

Modified: branches/fusion/2_1/boost/fusion/algorithm/iteration/detail/fold.hpp
==============================================================================
--- branches/fusion/2_1/boost/fusion/algorithm/iteration/detail/fold.hpp (original)
+++ branches/fusion/2_1/boost/fusion/algorithm/iteration/detail/fold.hpp 2007-10-21 01:51:31 EDT (Sun, 21 Oct 2007)
@@ -1,3 +1,10 @@
+/*=============================================================================
+ Copyright (c) 2001-2006 Joel de Guzman
+ Copyright (c) 2006 Dan Marsden
+
+ 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)
+==============================================================================*/
 #if !defined(BOOST_FUSION_FOLD_HPP_20070528_1253)
 #define BOOST_FUSION_FOLD_HPP_20070528_1253
 
@@ -98,7 +105,7 @@
     struct unrolled_fold<3>
     {
         template<typename I0, typename State, typename F>
- static typename result_of_unrolled_fold<I0, State, F, 3>::type
+ static typename result_of_unrolled_fold<I0, State, F, 3>::type
         call(I0 const& i0, State const& state, F f)
         {
             typedef typename result_of::next<I0>::type I1;
@@ -113,7 +120,7 @@
     struct unrolled_fold<2>
     {
         template<typename I0, typename State, typename F>
- static typename result_of_unrolled_fold<I0, State, F, 2>::type
+ static typename result_of_unrolled_fold<I0, State, F, 2>::type
         call(I0 const& i0, State const& state, F f)
         {
             typedef typename result_of::next<I0>::type I1;
@@ -126,7 +133,7 @@
     struct unrolled_fold<1>
     {
         template<typename I0, typename State, typename F>
- static typename result_of_unrolled_fold<I0, State, F, 1>::type
+ static typename result_of_unrolled_fold<I0, State, F, 1>::type
         call(I0 const& i0, State const& state, F f)
         {
             return f(*i0, state);


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