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

Modified Files:
        basic_regex.hpp 
Log Message:
faster proto is_ref, is_extends, is_expr; remove is_basic_expr; eliminate 
extends_base and extends multiple inheritance, misc. clean-up

Index: basic_regex.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/xpressive/basic_regex.hpp,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- basic_regex.hpp     29 Oct 2006 06:14:41 -0000      1.9
+++ basic_regex.hpp     10 Nov 2006 04:09:38 -0000      1.10
@@ -132,18 +132,16 @@
     // for binding actions to this regex when it is nested statically in 
another regex
     /// INTERNAL ONLY
     template<typename Action>
-    typename proto::meta::binary_expr
+    typename proto::meta::right_shift
     <
-        proto::right_shift_tag
-      , typename proto::meta::terminal<basic_regex<BidiIter> >::type
+        typename proto::meta::terminal<basic_regex<BidiIter> >::type
       , typename proto::meta::terminal<Action>::type
     >::type const
     operator [](detail::action_matcher<Action> const &action) const
     {
-        typename proto::meta::binary_expr
+        typename proto::meta::right_shift
         <
-            proto::right_shift_tag
-          , typename proto::meta::terminal<basic_regex<BidiIter> >::type
+            typename proto::meta::terminal<basic_regex<BidiIter> >::type
           , typename proto::meta::terminal<Action>::type
         >::type that = {{*this}, {*static_cast<Action const *>(&action)}};
         return that;


-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Boost-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/boost-cvs

Reply via email to