summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-05-23 21:22:57 +0100
committerCarl Hetherington <cth@carlh.net>2016-05-23 21:22:57 +0100
commitcf391f688a73956a8ee4caa1f896cef39d4b2607 (patch)
tree0b9a9665878e73290272716798874c187fe42fc2 /src
parentab3db3166a2217eb9616fea068a952330a9e64a2 (diff)
Missing virtual destructor.
Diffstat (limited to 'src')
-rw-r--r--src/lib/cinema_sound_processor.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/cinema_sound_processor.h b/src/lib/cinema_sound_processor.h
index 1d4a389f3..c2d2f44c0 100644
--- a/src/lib/cinema_sound_processor.h
+++ b/src/lib/cinema_sound_processor.h
@@ -38,6 +38,7 @@ class CinemaSoundProcessor : public boost::noncopyable
{
public:
CinemaSoundProcessor (std::string i, std::string n);
+ virtual ~CinemaSoundProcessor () {}
virtual float db_for_fader_change (float from, float to) const = 0;