#839 fixed: local variable shadow patch

[SVN r40816]
This commit is contained in:
Alexander Nasonov
2007-11-05 22:22:48 +00:00
parent 0d6a924f94
commit e70cf014ad

View File

@@ -52,9 +52,9 @@ namespace boost
{
}
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