Fixed MSVC-specific compile errors when /Za command-line option is used, due to lack of throw() in std::~exception().

[SVN r44706]
This commit is contained in:
Emil Dotchevski
2008-04-21 22:42:54 +00:00
parent ce9a26634c
commit 628b06a2fa
3 changed files with 19 additions and 0 deletions

View File

@ -30,6 +30,10 @@ boost
boost::exception(e)
{
}
~unknown_exception() throw()
{
}
};
typedef intrusive_ptr<exception_detail::clone_base const> exception_ptr;
@ -56,6 +60,10 @@ boost
boost::exception(e2)
{
}
~current_exception_std_exception_wrapper() throw()
{
}
};
template <class T>