summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2026-02-10 21:35:19 +0100
committerCarl Hetherington <cth@carlh.net>2026-02-10 21:35:19 +0100
commitee87162cb5405d68af62a84e6d2262854f9e3fc1 (patch)
tree8b6abb195017d0b70f4af6a126c24ce694b34854
parentf3636332da1b1d0c29865d5eb76675d4af420257 (diff)
Remove some pointless destructors.
-rw-r--r--src/exceptions.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/exceptions.h b/src/exceptions.h
index e0d0e90..3b2961d 100644
--- a/src/exceptions.h
+++ b/src/exceptions.h
@@ -56,7 +56,6 @@ class SubripError : public std::runtime_error
{
public:
SubripError (std::string saw, std::string expecting, std::list<std::string> context);
- ~SubripError () throw () {}
std::list<std::string> context () const {
return _context;
@@ -79,8 +78,6 @@ public:
WebVTTError(std::string saw, std::string expecting, std::list<std::string> context);
- ~WebVTTError() throw () {}
-
std::list<std::string> context() const {
return _context;
}