diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-07-23 19:52:32 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-07-23 19:52:32 +0100 |
| commit | 6eaf721983d959de9adf6347525fa203395e2bd5 (patch) | |
| tree | a0b52b78f0e33dac6b43a49984ee701532b99fea | |
| parent | 02ff5c5989c4e2a84e4a3be8123abdbd887f8648 (diff) | |
Missing virtual destructor.
| -rw-r--r-- | src/picture_asset_writer.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/picture_asset_writer.h b/src/picture_asset_writer.h index 189ec422..a0f0bdc8 100644 --- a/src/picture_asset_writer.h +++ b/src/picture_asset_writer.h @@ -49,6 +49,7 @@ struct FrameInfo class PictureAssetWriter : public boost::noncopyable { public: + virtual ~PictureAssetWriter () {} virtual FrameInfo write (uint8_t *, int) = 0; virtual void finalize () = 0; virtual void fake_write (int) = 0; |
