cosmetic bug fix in the exception_ptr support when the attempt to copy the exception object throws.

[SVN r65205]
This commit is contained in:
Emil Dotchevski
2010-09-03 02:24:45 +00:00
parent 3b4cdfce47
commit 12903d4e49

View File

@ -359,7 +359,7 @@ boost
catch(
std::bad_exception & e )
{
return exception_detail::exception_ptr_static_exception_object<exception_detail::bad_exception_>::e;
return exception_detail::current_exception_std_exception(e);
}
catch(
std::exception & e )