From 6e7e8a12ebd4d52ef076351b2505e751f4ab0f5e Mon Sep 17 00:00:00 2001 From: Joel de Guzman Date: Thu, 22 Nov 2007 08:39:46 +0000 Subject: [PATCH] bug fix [SVN r41299] --- .../view/transform_view/detail/value_at_impl.hpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/include/boost/fusion/view/transform_view/detail/value_at_impl.hpp b/include/boost/fusion/view/transform_view/detail/value_at_impl.hpp index cb581583..bd4409f7 100644 --- a/include/boost/fusion/view/transform_view/detail/value_at_impl.hpp +++ b/include/boost/fusion/view/transform_view/detail/value_at_impl.hpp @@ -2,7 +2,7 @@ Copyright (c) 2001-2006 Joel de Guzman Copyright (c) 2005-2006 Dan Marsden - Distributed under the Boost Software License, Version 1.0. (See accompanying + 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_VALUE_AT_IMPL_20061101_0745) @@ -10,7 +10,7 @@ #include #include -#include +#include namespace boost { namespace fusion { struct transform_view_tag; @@ -29,7 +29,7 @@ namespace boost { namespace fusion { { typedef typename Seq::transform_type F; typedef detail::apply_transform_result transform_type; - typedef typename boost::fusion::result_of::at::type value_type; + typedef typename boost::fusion::result_of::value_at::type value_type; typedef typename mpl::apply::type type; }; }; @@ -42,8 +42,8 @@ namespace boost { namespace fusion { { typedef typename Seq::transform_type F; typedef detail::apply_transform_result transform_type; - typedef typename boost::fusion::result_of::at::type value1_type; - typedef typename boost::fusion::result_of::at::type value2_type; + typedef typename boost::fusion::result_of::value_at::type value1_type; + typedef typename boost::fusion::result_of::value_at::type value2_type; typedef typename mpl::apply::type type; }; };