X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fstringcodec%2Fexcept.h;h=19cb4137079783b8986bd3c41a2def2f6333264b;hb=3bfc22d12b893d94cbb4697a77b7cababcbbd921;hp=6e2566682669ec0bbdc6a925d4fca2fb653c2250;hpb=c7afef88380ebebc8c2b04e48664d73281ec8848;p=libs%2Fcore.git diff --git a/source/stringcodec/except.h b/source/stringcodec/except.h index 6e25666..19cb413 100644 --- a/source/stringcodec/except.h +++ b/source/stringcodec/except.h @@ -14,7 +14,6 @@ class codec_error: public std::runtime_error { public: codec_error(const std::string &w): std::runtime_error(w) { } - virtual ~codec_error() throw() { } }; @@ -25,7 +24,6 @@ class invalid_character: public codec_error { public: invalid_character(unichar, const std::string &); - virtual ~invalid_character() throw() { } }; @@ -36,7 +34,6 @@ class invalid_sequence: public codec_error { public: invalid_sequence(const std::string::const_iterator &, const std::string::const_iterator &, const std::string &); - virtual ~invalid_sequence() throw() { } private: std::string format_sequence(const std::string::const_iterator &, const std::string::const_iterator &);