forked from boostorg/exception
Merge branch 'develop' of https://github.com/boostorg/exception into develop
This commit is contained in:
@ -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 ):
|
||||
|
Reference in New Issue
Block a user