summaryrefslogtreecommitdiff
path: root/src/reader.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-12-22 00:16:57 +0000
committerCarl Hetherington <cth@carlh.net>2014-12-22 00:16:57 +0000
commit9bbfca52271e25f23cdc7b5a3f267351f4fdb485 (patch)
tree3ae5d785a5f735f893dd843c8968c2f455550942 /src/reader.h
parent10016f6d3d072d9f743f432cc866118987df9f8f (diff)
Missing virtual destructor.
Diffstat (limited to 'src/reader.h')
-rw-r--r--src/reader.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/reader.h b/src/reader.h
index 235fa81..091df61 100644
--- a/src/reader.h
+++ b/src/reader.h
@@ -35,6 +35,8 @@ namespace sub {
class Reader
{
public:
+ virtual ~Reader () {}
+
std::list<RawSubtitle> subtitles () const {
return _subs;
}