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

Modified Files:
        regex_primitives.hpp 
Log Message:
fix matches<> to not instantiate intermediate basic_expr types, preliminary 
proto meta-grammar for static xpressive

Index: regex_primitives.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/xpressive/regex_primitives.hpp,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- regex_primitives.hpp        7 Nov 2006 05:03:51 -0000       1.15
+++ regex_primitives.hpp        13 Nov 2006 15:53:45 -0000      1.16
@@ -435,12 +435,12 @@
 ///
 /// \param rex The basic_regex object to embed by reference.
 template<typename BidiIter>
-inline typename proto::meta::terminal<detail::regex_placeholder<BidiIter, 
true> >::type const
+inline typename proto::meta::terminal<detail::regex_placeholder<BidiIter, 
mpl::true_> >::type const
 by_ref(basic_regex<BidiIter> const &rex)
 {
     typedef detail::core_access<BidiIter> access;
     shared_ptr<detail::regex_impl<BidiIter> > impl = 
access::get_regex_impl(rex);
-    return proto::make_terminal(detail::regex_placeholder<BidiIter, 
true>(impl));
+    return proto::make_terminal(detail::regex_placeholder<BidiIter, 
mpl::true_>(impl));
 }
 
 ///////////////////////////////////////////////////////////////////////////////


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