diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-12-22 00:20:02 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-12-22 00:20:02 +0000 |
| commit | be2117b1ea71c535e03c02be962387829806b1da (patch) | |
| tree | ffaebbd0ede2a2ec0899b3a6b80649da304598aa /src | |
| parent | 2912464e4e2a11cd0543ee91b705a98104962daa (diff) | |
Missing virtual destructor.
Diffstat (limited to 'src')
| -rw-r--r-- | src/reader.h | 2 |
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; } |
