From 82f56ff696984025a28b9f76441c9ba360b00c45 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Wed, 25 Jan 2006 05:14:06 +0000 Subject: [PATCH] =?UTF-8?q?Tween.cpp:29:=20warning:=20=E2=80=98struct=20Tw?= =?UTF-8?q?eenLinear=E2=80=99=20has=20virtual=20functions=20but=20non-virt?= =?UTF-8?q?ual=20destructor?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- stepmania/src/Tween.h | 1 + 1 file changed, 1 insertion(+) diff --git a/stepmania/src/Tween.h b/stepmania/src/Tween.h index 621cbd3e94..d1798bd9bd 100644 --- a/stepmania/src/Tween.h +++ b/stepmania/src/Tween.h @@ -18,6 +18,7 @@ enum TweenType class ITween { public: + virtual ~ITween() { } virtual float Tween( float f ) const = 0; virtual ITween *Copy() const = 0;