From: Matthias Braun Date: Sat, 11 Feb 2006 11:07:10 +0000 (+0000) Subject: fix warning X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=6a0d1626fbd13be7b2e1113586db08ba3ca12b0c;p=supertux.git fix warning SVN-Revision: 3053 --- diff --git a/src/squirrel/include/sqstdio.h b/src/squirrel/include/sqstdio.h index 1174201a9..864b4f1de 100644 --- a/src/squirrel/include/sqstdio.h +++ b/src/squirrel/include/sqstdio.h @@ -7,6 +7,7 @@ #define SQSTD_STREAM_TYPE_TAG 0x80000000 struct SQStream { + virtual ~SQStream() {} virtual SQInteger Read(void *buffer, SQInteger size) = 0; virtual SQInteger Write(void *buffer, SQInteger size) = 0; virtual SQInteger Flush() = 0;