Merge branch 'develop' of https://github.com/boostorg/exception into develop

This commit is contained in:
Emil Dotchevski
2017-03-30 16:56:29 -07:00
10 changed files with 136 additions and 560 deletions

View File

@ -32,8 +32,7 @@ boost
public:
virtual std::string name_value_string() const = 0;
protected:
virtual error_info_base * clone() const = 0;
virtual
~error_info_base() throw()
@ -47,6 +46,11 @@ boost
error_info:
public exception_detail::error_info_base
{
error_info_base *
clone() const
{
return new error_info<Tag,T>(*this);
}
public:
typedef T value_type;
error_info( value_type const & v ):