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

Modified Files:
        as_modifier.hpp as_quantifier.hpp 
Log Message:
major renames for proto to conform with <functional>

Index: as_modifier.hpp
===================================================================
RCS file: 
/cvsroot/boost/boost/boost/xpressive/detail/static/transforms/as_modifier.hpp,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- as_modifier.hpp     15 Apr 2007 06:40:26 -0000      1.4
+++ as_modifier.hpp     29 Apr 2007 03:38:49 -0000      1.5
@@ -25,7 +25,6 @@
     
///////////////////////////////////////////////////////////////////////////////
     // regex operator tags
     struct modifier_tag
-      : proto::tag::binary
     {
     };
 

Index: as_quantifier.hpp
===================================================================
RCS file: 
/cvsroot/boost/boost/boost/xpressive/detail/static/transforms/as_quantifier.hpp,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- as_quantifier.hpp   15 Apr 2007 06:40:26 -0000      1.8
+++ as_quantifier.hpp   29 Apr 2007 03:38:49 -0000      1.9
@@ -28,7 +28,6 @@
     // generic_quant_tag
     template<uint_t Min, uint_t Max>
     struct generic_quant_tag
-      : proto::tag::unary
     {
         typedef mpl::integral_c<uint_t, Min> min_type;
         typedef mpl::integral_c<uint_t, Max> max_type;
@@ -40,10 +39,10 @@
     struct min_type : Tag::min_type {};
 
     template<>
-    struct min_type<proto::tag::unary_plus> : mpl::integral_c<uint_t, 1> {};
+    struct min_type<proto::tag::posit> : mpl::integral_c<uint_t, 1> {};
 
     template<>
-    struct min_type<proto::tag::unary_star> : mpl::integral_c<uint_t, 0> {};
+    struct min_type<proto::tag::dereference> : mpl::integral_c<uint_t, 0> {};
 
     template<>
     struct min_type<proto::tag::logical_not> : mpl::integral_c<uint_t, 0> {};
@@ -52,10 +51,10 @@
     struct max_type : Tag::max_type {};
 
     template<>
-    struct max_type<proto::tag::unary_plus> : mpl::integral_c<uint_t, 
UINT_MAX-1> {};
+    struct max_type<proto::tag::posit> : mpl::integral_c<uint_t, UINT_MAX-1> 
{};
 
     template<>
-    struct max_type<proto::tag::unary_star> : mpl::integral_c<uint_t, 
UINT_MAX-1> {};
+    struct max_type<proto::tag::dereference> : mpl::integral_c<uint_t, 
UINT_MAX-1> {};
 
     template<>
     struct max_type<proto::tag::logical_not> : mpl::integral_c<uint_t, 1> {};


-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Boost-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/boost-cvs

Reply via email to