$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r57324 - sandbox/statistics/detail/fusion/boost/statistics/detail/fusion/at_key
From: erwann.rogard_at_[hidden]
Date: 2009-11-03 11:48:24
Author: e_r
Date: 2009-11-03 11:48:23 EST (Tue, 03 Nov 2009)
New Revision: 57324
URL: http://svn.boost.org/trac/boost/changeset/57324
Log:
m
Text files modified: 
   sandbox/statistics/detail/fusion/boost/statistics/detail/fusion/at_key/iterator.hpp |     4 ++--                                    
   sandbox/statistics/detail/fusion/boost/statistics/detail/fusion/at_key/range.hpp    |     4 ++--                                    
   2 files changed, 4 insertions(+), 4 deletions(-)
Modified: sandbox/statistics/detail/fusion/boost/statistics/detail/fusion/at_key/iterator.hpp
==============================================================================
--- sandbox/statistics/detail/fusion/boost/statistics/detail/fusion/at_key/iterator.hpp	(original)
+++ sandbox/statistics/detail/fusion/boost/statistics/detail/fusion/at_key/iterator.hpp	2009-11-03 11:48:23 EST (Tue, 03 Nov 2009)
@@ -32,7 +32,7 @@
         typedef typename result_of<f_(ref1_)>::type ref2_;
         typedef boost::transform_iterator<f_,It,ref2_> type;
     
-        static type make(It i){
+        static type call(It i){
             // don't use make_transform_iterator because not default.
             return type(i,f_());
         }
@@ -43,7 +43,7 @@
     typename meta_iterator<It,K>::type
     make_iterator(It i){
         typedef meta_iterator<It,K> m_;
-        return m_::make(i);
+        return m_::call(i);
     }
 
 }// at_key
Modified: sandbox/statistics/detail/fusion/boost/statistics/detail/fusion/at_key/range.hpp
==============================================================================
--- sandbox/statistics/detail/fusion/boost/statistics/detail/fusion/at_key/range.hpp	(original)
+++ sandbox/statistics/detail/fusion/boost/statistics/detail/fusion/at_key/range.hpp	2009-11-03 11:48:23 EST (Tue, 03 Nov 2009)
@@ -25,7 +25,7 @@
         typedef typename meta_::type it_;
         typedef iterator_range<it_>  type;
     
-        static type make(It b,It e){
+        static type call(It b,It e){
             return type(
                 make_iterator<K>(b),
                 make_iterator<K>(e)
@@ -38,7 +38,7 @@
     typename meta_range<It,K>::type
     make_range(It b,It e){
         typedef meta_range<It,K> m_;
-        return m_::make(b,e);
+        return m_::call(b,e);
     }
 
 }// at_key