forked from boostorg/exception
Ticket #3848 (thanks Nikki Chumakov) and (unrelated) exception_ptr refactoring.
[SVN r59364]
This commit is contained in:
@ -143,6 +143,14 @@ boost
|
||||
if( !--count_ )
|
||||
delete this;
|
||||
}
|
||||
|
||||
refcount_ptr<exception_detail::error_info_container>
|
||||
clone() const
|
||||
{
|
||||
refcount_ptr<exception_detail::error_info_container> c;
|
||||
c.adopt(new exception_detail::error_info_container_impl(*this));
|
||||
return c;
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user