1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-03-03 20:49:41 +00:00

Add missing virtual destructor

This commit is contained in:
scrawl 2014-10-25 20:00:10 +02:00
parent 4680bc6c93
commit dc6a99d32a

View file

@ -12,6 +12,7 @@ class MovieAudioFactory
{ {
public: public:
virtual boost::shared_ptr<MovieAudioDecoder> createDecoder(VideoState* videoState) = 0; virtual boost::shared_ptr<MovieAudioDecoder> createDecoder(VideoState* videoState) = 0;
virtual ~MovieAudioFactory() {}
}; };
} }