From f986e8e588e86ef3bba2989828767136791771be Mon Sep 17 00:00:00 2001 From: Alexander Nasonov Date: Wed, 28 Feb 2007 21:44:10 +0000 Subject: [PATCH] Get rid of Tru64 cxx warnings [SVN r37116] --- include/boost/lexical_cast.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/lexical_cast.hpp b/include/boost/lexical_cast.hpp index c5f0343..da8262e 100644 --- a/include/boost/lexical_cast.hpp +++ b/include/boost/lexical_cast.hpp @@ -505,7 +505,7 @@ namespace boost --left; --finish; - int const digit = static_cast(n % 10); + int const digit = static_cast(n % 10); int const cdigit = digit + lcast_char_constants::zero; *finish = static_cast(cdigit); n /= 10;