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

Modified Files:
        regex_impl.hpp 
Log Message:
rename proto::op to proto::functional, work toward better support in xpressive 
for non-char data

Index: regex_impl.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/xpressive/detail/core/regex_impl.hpp,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- regex_impl.hpp      7 May 2007 04:41:25 -0000       1.11
+++ regex_impl.hpp      24 May 2007 23:25:40 -0000      1.12
@@ -52,12 +52,14 @@
 template<typename Char>
 struct named_mark
 {
-    named_mark(std::basic_string<Char> name, std::size_t mark_nbr)
+    typedef typename detail::string_type<Char>::type string_type;
+
+    named_mark(string_type name, std::size_t mark_nbr)
       : name_(name)
       , mark_nbr_(mark_nbr)
     {}
 
-    std::basic_string<Char> name_;
+    string_type name_;
     std::size_t mark_nbr_;
 };
 


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