Documentation update

[SVN r52091]
This commit is contained in:
Emil Dotchevski
2009-03-31 22:16:49 +00:00
parent 88f0b2e863
commit 6e75ef5803
13 changed files with 5499 additions and 4908 deletions

View File

@ -6,6 +6,7 @@
#ifndef UUID_0552D49838DD11DD90146B8956D89593
#define UUID_0552D49838DD11DD90146B8956D89593
#include <boost/config.hpp>
#include <boost/exception/get_error_info.hpp>
#include <exception>
#include <sstream>
@ -22,13 +23,17 @@ boost
get_diagnostic_information( exception const & x )
{
if( error_info_container * c=x.data_.get() )
#ifndef BOOST_NO_EXCEPTIONS
try
{
#endif
return c->diagnostic_information();
#ifndef BOOST_NO_EXCEPTIONS
}
catch(...)
{
}
#endif
return 0;
}
}