From fdb8be2fd52da184a45222d193b939271ba87348 Mon Sep 17 00:00:00 2001 From: Ykkrosh Date: Sun, 1 Aug 2010 17:36:39 +0000 Subject: [PATCH] Fix warning This was SVN commit r7836. --- source/lib/res/sound/ogg.h | 1 + 1 file changed, 1 insertion(+) diff --git a/source/lib/res/sound/ogg.h b/source/lib/res/sound/ogg.h index b070bfe2d6..1a5c5afe69 100644 --- a/source/lib/res/sound/ogg.h +++ b/source/lib/res/sound/ogg.h @@ -6,6 +6,7 @@ class OggStream { public: + virtual ~OggStream() { } virtual ALenum Format() = 0; virtual ALsizei SamplingRate() = 0; virtual LibError GetNextChunk(u8* buffer, size_t size) = 0;