removed tabs from source files

updated documentation


[SVN r47251]
This commit is contained in:
Emil Dotchevski
2008-07-09 00:39:00 +00:00
parent 5899c77544
commit 6922781198
47 changed files with 4635 additions and 5339 deletions

View File

@ -50,14 +50,14 @@ main()
using namespace boost;
{
error1 x;
BOOST_TEST(x.what()==std::string("error1"));
BOOST_TEST(x.what()==std::string("error1"));
std::string di=get_diagnostic_information(x);
BOOST_TEST(di.find("type:")!=std::string::npos);
BOOST_TEST(di.find("error1")!=std::string::npos);
}
{
error2 x; x << tag_int(42);
BOOST_TEST(x.what()==std::string("error2"));
BOOST_TEST(x.what()==std::string("error2"));
std::string di=get_diagnostic_information(x);
BOOST_TEST(di.find("type:")!=std::string::npos);
BOOST_TEST(di.find("error2")!=std::string::npos);