forked from boostorg/throw_exception
Bug fix in exception cloning (thanks Johan Soderback for reporting it.)
[SVN r75636]
This commit is contained in:
committed by
Peter Dimov
parent
c50f832bf8
commit
630a5ceb0a
@ -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()
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user