minor diagnostic_information maintenance, updated documentation

[SVN r58131]
This commit is contained in:
Emil Dotchevski
2009-12-04 01:29:22 +00:00
parent dc75da0dc4
commit 58a49ff77e
7 changed files with 8333 additions and 8351 deletions

View File

@ -11,7 +11,18 @@
#include <boost/detail/lightweight_test.hpp>
#include <stdlib.h>
struct my_exception: boost::exception, std::exception { };
struct
my_exception:
boost::exception,
std::exception
{
char const *
what() const throw()
{
return "my_exception";
}
};
typedef boost::error_info<struct my_tag,int> my_int;
bool called=false;