Bug fix in exception cloning (thanks Johan Soderback for reporting it.)

[SVN r75636]
This commit is contained in:
Emil Dotchevski
2011-11-23 08:40:08 +00:00
committed by Peter Dimov
parent c50f832bf8
commit 630a5ceb0a

View File

@ -421,6 +421,12 @@ boost
copy_boost_exception(this,&x); copy_boost_exception(this,&x);
} }
clone_impl( clone_impl const & x ):
T(x)
{
copy_boost_exception(this,&x);
}
~clone_impl() throw() ~clone_impl() throw()
{ {
} }