tabs removed, added protected inline dtors.

[SVN r45042]
This commit is contained in:
Emil Dotchevski
2008-05-02 20:51:31 +00:00
parent e1056d2f4a
commit d4a15cd9db
4 changed files with 20 additions and 8 deletions

View File

@ -7,12 +7,12 @@
struct
my_exception
{
};
{
};
void
tester()
{
//Must not compile, throw_exception requires exception types to derive std::exception.
boost::throw_exception(my_exception());
//Must not compile, throw_exception requires exception types to derive std::exception.
boost::throw_exception(my_exception());
}