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

Modified Files:
        type_traits.hpp 
Log Message:
SetFillContext does proper widening of narrow chars

Index: type_traits.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/xpressive/detail/static/type_traits.hpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- type_traits.hpp     26 Nov 2005 17:12:25 -0000      1.2
+++ type_traits.hpp     24 Apr 2007 07:05:20 -0000      1.3
@@ -13,10 +13,9 @@
 # pragma once
 #endif
 
-#include <boost/ref.hpp>
-#include <boost/mpl/not.hpp>
 #include <boost/mpl/bool.hpp>
 #include <boost/iterator/iterator_traits.hpp>
+#include <boost/type_traits/is_convertible.hpp>
 #include <boost/xpressive/detail/detail_fwd.hpp>
 
 namespace boost { namespace xpressive { namespace detail
@@ -43,36 +42,6 @@
 {
 };
 
-///////////////////////////////////////////////////////////////////////////////
-// is_regex
-//
-template<typename Xpr>
-struct is_regex
-  : mpl::false_
-{
-};
-
-template<typename BidiIter>
-struct is_regex<basic_regex<BidiIter> >
-  : mpl::true_
-{
-};
-
-template<typename BidiIter>
-struct is_regex<reference_wrapper<basic_regex<BidiIter> > >
-  : mpl::true_
-{
-};
-
-///////////////////////////////////////////////////////////////////////////////
-// is_modifiable
-//
-template<typename Xpr>
-struct is_modifiable
-  : mpl::not_<is_regex<Xpr> >
-{
-};
-
 //////////////////////////////////////////////////////////////////////////
 // is_random
 //


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