From 8ddc0e961a7cf02845964339f9ed590247a3559d Mon Sep 17 00:00:00 2001 From: sekrit-twc Date: Tue, 1 Sep 2020 12:32:39 -0700 Subject: [PATCH] Fix missing virtual destructor --- timecube/lut.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/timecube/lut.h b/timecube/lut.h index 19c8988..743dc8b 100644 --- a/timecube/lut.h +++ b/timecube/lut.h @@ -30,6 +30,8 @@ struct PixelFormat { class Lut : public ::timecube_filter { public: + virtual ~Lut() = default; + virtual void to_float(const void * const src[3], float * const dst[3], const PixelFormat &format, unsigned width) const; virtual void from_float(const float * const src[3], void * const dst[3], const PixelFormat &format, unsigned width) const;