Added verbose parameter to boost::diagnostic_information.

[SVN r82179]
This commit is contained in:
Emil Dotchevski
2012-12-23 03:31:48 +00:00
parent 2ebfd49b4f
commit 9b100b0c9d
17 changed files with 3811 additions and 4014 deletions

View File

@ -467,7 +467,7 @@ boost
inline
std::string
diagnostic_information( exception_ptr const & p )
diagnostic_information( exception_ptr const & p, bool verbose=true )
{
if( p )
try
@ -477,7 +477,7 @@ boost
catch(
... )
{
return current_exception_diagnostic_information();
return current_exception_diagnostic_information(verbose);
}
return "<empty>";
}