io: remove uneeded stream_error destructor

This commit is contained in:
Danny Robson 2016-05-12 17:53:37 +10:00
parent 06be0a128f
commit 5e597eef25

2
io.hpp
View File

@ -129,8 +129,6 @@ namespace util {
class stream_error : public std::exception {
public:
virtual ~stream_error () { ; }
virtual const char* what (void) const noexcept
{ return "error on C stream"; }
};