Skip to content

Commit

Permalink
Fix missing virtual destructor
Browse files Browse the repository at this point in the history
  • Loading branch information
sekrit-twc committed Sep 1, 2020
1 parent 70810d3 commit 8ddc0e9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions timecube/lut.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 8ddc0e9

Please sign in to comment.