Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r53596 - branches/release/boost/fusion/sequence/intrinsic
From: hartmut.kaiser_at_[hidden]
Date: 2009-06-03 08:44:27


Author: hkaiser
Date: 2009-06-03 08:44:26 EDT (Wed, 03 Jun 2009)
New Revision: 53596
URL: http://svn.boost.org/trac/boost/changeset/53596

Log:
Fusion: merging from trunk
Text files modified:
   branches/release/boost/fusion/sequence/intrinsic/at.hpp | 4 ++--
   1 files changed, 2 insertions(+), 2 deletions(-)

Modified: branches/release/boost/fusion/sequence/intrinsic/at.hpp
==============================================================================
--- branches/release/boost/fusion/sequence/intrinsic/at.hpp (original)
+++ branches/release/boost/fusion/sequence/intrinsic/at.hpp 2009-06-03 08:44:26 EDT (Wed, 03 Jun 2009)
@@ -91,14 +91,14 @@
>::type
     at_c(Sequence& seq)
     {
- return at<mpl::int_<N> >(seq);
+ return fusion::at<mpl::int_<N> >(seq);
     }
 
     template <int N, typename Sequence>
     inline typename result_of::at_c<Sequence const, N>::type
     at_c(Sequence const& seq)
     {
- return at<mpl::int_<N> >(seq);
+ return fusion::at<mpl::int_<N> >(seq);
     }
 }}
 


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