Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r53919 - trunk/libs/proto/example
From: eric_at_[hidden]
Date: 2009-06-15 02:27:13


Author: eric_niebler
Date: 2009-06-15 02:27:13 EDT (Mon, 15 Jun 2009)
New Revision: 53919
URL: http://svn.boost.org/trac/boost/changeset/53919

Log:
accomodate fusion:vector0 interface change
Text files modified:
   trunk/libs/proto/example/lambda.hpp | 4 ++--
   1 files changed, 2 insertions(+), 2 deletions(-)

Modified: trunk/libs/proto/example/lambda.hpp
==============================================================================
--- trunk/libs/proto/example/lambda.hpp (original)
+++ trunk/libs/proto/example/lambda.hpp 2009-06-15 02:27:13 EDT (Mon, 15 Jun 2009)
@@ -551,7 +551,7 @@
         struct llresult<This()>
           : mpl::if_c<
                 result_of<IsNullary(This &)>::type::value
- , result_of<Eval(This &, no_exception_type const &, fusion::vector0 &)>
+ , result_of<Eval(This &, no_exception_type const &, fusion::vector0<> &)>
               , mpl::identity<void>
>::type
         {};
@@ -586,7 +586,7 @@
             typename result<Expr const()>::type
             operator()() const
             {
- fusion::vector0 args;
+ fusion::vector0<> args;
                 return Eval()(*this, no_exception, args);
             }
 


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