Update of /cvsroot/boost/boost/boost/spirit/core/scanner
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv23355/core/scanner

Modified Files:
        scanner.hpp 
Log Message:
More fixes for CLiPP.

Index: scanner.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/spirit/core/scanner/scanner.hpp,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- scanner.hpp 8 Feb 2006 23:05:39 -0000       1.12
+++ scanner.hpp 14 Mar 2007 23:08:35 -0000      1.13
@@ -239,6 +239,10 @@
         scanner(scanner const& other, IteratorT& first_)
         : PoliciesT(other), first(first_), last(other.last) {}
 
+        template <typename PoliciesT1>
+        scanner(scanner<IteratorT, PoliciesT1> const& other)
+        : PoliciesT(other), first(other.first), last(other.last) {}
+
         bool
         at_end() const
         {


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