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

Modified Files:
        parser.hpp 
Log Message:
changes required by gcc-4.3 and ConceptGCC

Index: parser.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/xpressive/detail/dynamic/parser.hpp,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- parser.hpp  24 Apr 2007 07:05:20 -0000      1.7
+++ parser.hpp  28 Apr 2007 01:42:17 -0000      1.8
@@ -227,7 +227,7 @@
     if(optimize)
     {
         typedef basic_chset<char_type> charset_type;
-        charset_type charset(chset.basic_chset());
+        charset_type charset(chset.base());
         if(icase)
         {
             charset_matcher<Traits, true, charset_type> matcher(charset);
@@ -243,7 +243,7 @@
     }
 
     // special case to make [[:digit:]] fast
-    else if(chset.basic_chset().empty() && chset.posix_no().empty())
+    else if(chset.base().empty() && chset.posix_no().empty())
     {
         BOOST_ASSERT(0 != chset.posix_yes());
         posix_charset_matcher<Traits> matcher(chset.posix_yes(), 
chset.is_inverted());


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