Update of /cvsroot/boost/boost/boost/xpressive/proto
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv10081/proto

Modified Files:
        fusion.hpp 
Log Message:
bug fixing wrt const and temporaries in action_context

Index: fusion.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/xpressive/proto/fusion.hpp,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -d -r1.25 -r1.26
--- fusion.hpp  29 Mar 2007 22:19:39 -0000      1.25
+++ fusion.hpp  31 Mar 2007 07:40:19 -0000      1.26
@@ -81,14 +81,14 @@
         {
             typedef 
                 typename Context::template eval<
-                    typename detail::remove_cv_ref<Expr>::type
+                    typename remove_reference<Expr>::type
                 >::result_type
             type;
         };
 
         template<typename Expr>
         typename result<Expr>::type
-        operator()(Expr const &expr) const
+        operator()(Expr &expr) const
         {
             return proto::eval(expr, this->ctx_);
         }


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Boost-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/boost-cvs

Reply via email to