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

Modified Files:
        access.hpp 
Log Message:
basic_regex uses proto::extends<>, eliminate regex_operators.hpp and 
as_matcher(), as_xpr() is simply proto::as_expr()

Index: access.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/xpressive/detail/core/access.hpp,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- access.hpp  18 Apr 2006 20:54:15 -0000      1.4
+++ access.hpp  12 Mar 2007 22:11:29 -0000      1.5
@@ -28,7 +28,7 @@
 {
     static std::size_t get_hidden_mark_count(basic_regex<BidiIter> const &rex)
     {
-        return rex.impl_->hidden_mark_count_;
+        return proto::arg(rex)->hidden_mark_count_;
     }
 
     static bool invalid(basic_regex<BidiIter> const &rex)
@@ -44,7 +44,7 @@
     static shared_ptr<detail::regex_impl<BidiIter> > const &
     get_regex_impl(basic_regex<BidiIter> const &rex)
     {
-        return rex.impl_.get();
+        return proto::arg(rex).get();
     }
 
     static void init_sub_match_vector


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