Added protected destructor to the base type error_info_base

[SVN r44781]
This commit is contained in:
Emil Dotchevski
2008-04-26 17:43:58 +00:00
parent 487235a7cc
commit b5877b8d9a

View File

@ -36,6 +36,12 @@ boost
virtual std::type_info const & tag_typeid() const = 0;
virtual std::string value_as_string() const = 0;
protected:
~error_info_base()
{
}
};
}