Ticket #3848 (thanks Nikki Chumakov) and (unrelated) exception_ptr refactoring.

[SVN r59364]
This commit is contained in:
Emil Dotchevski
2010-01-30 05:26:43 +00:00
parent 9dee0fb9e6
commit 4ae002cbf8
7 changed files with 224 additions and 159 deletions

View File

@ -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;
}
};
}