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

Modified Files:
        cpp_regex_traits.hpp 
Log Message:
blank matches wide space

Index: cpp_regex_traits.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/xpressive/traits/cpp_regex_traits.hpp,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- cpp_regex_traits.hpp        3 Jun 2007 02:23:49 -0000       1.19
+++ cpp_regex_traits.hpp        29 Jun 2007 15:38:51 -0000      1.20
@@ -224,7 +224,8 @@
         static bool is_blank(Char ch)
         {
             BOOST_MPL_ASSERT_RELATION('\t', ==, L'\t');
-            return L'\t' == ch;
+            BOOST_MPL_ASSERT_RELATION(' ', ==, L' ');
+            return L' ' == ch || L'\t' == ch;
         }
 
         static bool is_underscore(Char ch)


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