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

Modified Files:
        calculator.cpp toy_spirit.cpp 
Log Message:
use fusion::invoke instead of fusion::fused, rename fanout_context to 
callable_context

Index: calculator.cpp
===================================================================
RCS file: /cvsroot/boost/boost/libs/xpressive/proto/test/calculator.cpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- calculator.cpp      26 Mar 2007 06:06:25 -0000      1.3
+++ calculator.cpp      26 Mar 2007 20:28:54 -0000      1.4
@@ -14,7 +14,7 @@
 struct placeholder {};
 proto::terminal<placeholder>::type const _1 = {{}};
 
-struct calculator : proto::fanout_context<calculator>
+struct calculator : proto::callable_context<calculator>
 {
     typedef int result_type;
 

Index: toy_spirit.cpp
===================================================================
RCS file: /cvsroot/boost/boost/libs/xpressive/proto/test/toy_spirit.cpp,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- toy_spirit.cpp      26 Mar 2007 06:06:25 -0000      1.5
+++ toy_spirit.cpp      26 Mar 2007 20:28:54 -0000      1.6
@@ -145,7 +145,7 @@
     template<typename FwdIter, typename Skipper = never_p>
     struct spirit_context
       : std::pair<FwdIter, FwdIter>
-      , proto::fanout_context<spirit_context<FwdIter, Skipper> >
+      , proto::callable_context<spirit_context<FwdIter, Skipper> >
     {
         typedef bool result_type;
         typedef FwdIter iterator;
@@ -517,11 +517,9 @@
             proto::bitwise_or< Grammar, Grammar >
           , proto::right_shift< Grammar, Grammar >
           , proto::subtract< Grammar, Grammar >
-          , proto::or_<
-                proto::unary_star< Grammar >
-              , proto::unary_plus< Grammar >
-              , proto::logical_not< Grammar >
-            >
+          , proto::unary_star< Grammar >
+          , proto::unary_plus< Grammar >
+          , proto::logical_not< Grammar >
         >
     {};
 


-------------------------------------------------------------------------
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