1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-10-31 00:07:39 +02:00

- fixes for gcc-4.7

- added missing virtual destructors (new warning from gcc)
This commit is contained in:
Ivan Savenko
2012-04-08 10:34:23 +00:00
parent d9064f4f7d
commit f426a48d09
13 changed files with 37 additions and 19 deletions

View File

@@ -84,6 +84,7 @@ static CApplier<CBaseForGSApply> *applierGs = NULL;
class IObjectCaller
{
public:
virtual ~IObjectCaller(){};
virtual void preInit()=0;
virtual void postInit()=0;
};