$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: Alexander.Nasonov_at_[hidden]
Date: 2007-11-05 17:22:49
Author: nasonov
Date: 2007-11-05 17:22:48 EST (Mon, 05 Nov 2007)
New Revision: 40816
URL: http://svn.boost.org/trac/boost/changeset/40816
Log:
#839 fixed: local variable shadow patch
Text files modified: 
   trunk/boost/lexical_cast.hpp |     6 +++---                                  
   1 files changed, 3 insertions(+), 3 deletions(-)
Modified: trunk/boost/lexical_cast.hpp
==============================================================================
--- trunk/boost/lexical_cast.hpp	(original)
+++ trunk/boost/lexical_cast.hpp	2007-11-05 17:22:48 EST (Mon, 05 Nov 2007)
@@ -52,9 +52,9 @@
         {
         }
         bad_lexical_cast(
-            const std::type_info &source_type,
-            const std::type_info &target_type) :
-            source(&source_type), target(&target_type)
+            const std::type_info &source_type_arg,
+            const std::type_info &target_type_arg) :
+            source(&source_type_arg), target(&target_type_arg)
         {
         }
         const std::type_info &source_type() const