missing copyright

[SVN r40257]
This commit is contained in:
Joel de Guzman
2007-10-21 05:51:31 +00:00
parent db4f2ba847
commit ea0da68ccd

View File

@ -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) #if !defined(BOOST_FUSION_FOLD_HPP_20070528_1253)
#define BOOST_FUSION_FOLD_HPP_20070528_1253 #define BOOST_FUSION_FOLD_HPP_20070528_1253
@ -98,7 +105,7 @@ namespace detail
struct unrolled_fold<3> struct unrolled_fold<3>
{ {
template<typename I0, typename State, typename F> 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) call(I0 const& i0, State const& state, F f)
{ {
typedef typename result_of::next<I0>::type I1; typedef typename result_of::next<I0>::type I1;
@ -113,7 +120,7 @@ namespace detail
struct unrolled_fold<2> struct unrolled_fold<2>
{ {
template<typename I0, typename State, typename F> 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) call(I0 const& i0, State const& state, F f)
{ {
typedef typename result_of::next<I0>::type I1; typedef typename result_of::next<I0>::type I1;
@ -126,7 +133,7 @@ namespace detail
struct unrolled_fold<1> struct unrolled_fold<1>
{ {
template<typename I0, typename State, typename F> 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) call(I0 const& i0, State const& state, F f)
{ {
return f(*i0, state); return f(*i0, state);