From 00b609b498c12ebbfa4789ddcde7d741abee3d33 Mon Sep 17 00:00:00 2001 From: Steven Watanabe Date: Fri, 11 Jun 2010 16:12:39 +0000 Subject: [PATCH] Supress MSVC /Wp64 warnings. Fixes #4184 [SVN r62806] --- include/boost/lexical_cast.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/include/boost/lexical_cast.hpp b/include/boost/lexical_cast.hpp index aab5bb9..f3f42bb 100644 --- a/include/boost/lexical_cast.hpp +++ b/include/boost/lexical_cast.hpp @@ -1126,6 +1126,7 @@ namespace boost # pragma warning( push ) # pragma warning( disable : 4701 ) // possible use of ... before initialization # pragma warning( disable : 4702 ) // unreachable code +# pragma warning( disable : 4267 ) // conversion from 'size_t' to 'unsigned int' #endif template< typename Target