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

Modified Files:
        lexical_cast.hpp 
Log Message:
Get rid of Tru64 cxx warnings

Index: lexical_cast.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/lexical_cast.hpp,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -d -r1.34 -r1.35
--- lexical_cast.hpp    26 Feb 2007 17:27:26 -0000      1.34
+++ lexical_cast.hpp    28 Feb 2007 21:44:10 -0000      1.35
@@ -505,7 +505,7 @@
 
                 --left;
                 --finish;
-                int const digit = static_cast<int const>(n % 10);
+                int const digit = static_cast<int>(n % 10);
                 int const cdigit = digit + lcast_char_constants<CharT>::zero;
                 *finish = static_cast<char>(cdigit);
                 n /= 10;


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