Update of /cvsroot/boost/boost/boost/xpressive/detail/static
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv10537/detail/static

Modified Files:
        grammar.hpp 
Log Message:
update xpressive grammar for actions

Index: grammar.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/xpressive/detail/static/grammar.hpp,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- grammar.hpp 12 Mar 2007 22:11:29 -0000      1.14
+++ grammar.hpp 22 Mar 2007 19:54:45 -0000      1.15
@@ -250,6 +250,11 @@
     {};
 
     template<typename Char>
+    struct XpressiveAction
+      : proto::subscript< XpressiveGrammar<Char>, proto::_ >
+    {};
+
+    template<typename Char>
     struct XpressiveTerminal
       : proto::or_<
             proto::and_<
@@ -257,13 +262,12 @@
               , proto::if_<detail::is_xpressive_terminal<Char, 
proto::result_of::arg<mpl::_> > >
             >
           , XpressiveComplementedExpression<Char>
-          , proto::or_<
-                XpressiveTaggedSubExpression<Char>
-              , XpressiveLookAroundAssertion<Char>
-              , XpressiveModifiedSubExpression<Char>
-              , XpressiveIndependentSubExpression<Char>
-              , XpressiveSet<Char>
-            >
+          , XpressiveTaggedSubExpression<Char>
+          , XpressiveLookAroundAssertion<Char>
+          , XpressiveModifiedSubExpression<Char>
+          , XpressiveIndependentSubExpression<Char>
+          , XpressiveSet<Char>
+          , XpressiveAction<Char>
         >
     {};
 


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