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

Modified Files:
        set_matcher.hpp 
Log Message:
work around intel-win bug wrt arrays used as output iterator to std algorithms

Index: set_matcher.hpp
===================================================================
RCS file: 
/cvsroot/boost/boost/boost/xpressive/detail/core/matcher/set_matcher.hpp,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- set_matcher.hpp     26 Nov 2005 17:12:25 -0000      1.4
+++ set_matcher.hpp     5 Apr 2007 07:10:10 -0000       1.5
@@ -125,7 +125,7 @@
       , not_(false)
       , icase_(that.icase_)
     {
-        std::copy(that.begin(), that.end(), this->set_);
+        std::copy(that.begin(), that.end(), static_cast<char_type 
*>(this->set_));
         this->set_[ Size - 1 ] = traits.translate(ch);
     }
 };


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