diff options
author | uruk | 2014-08-03 11:53:28 +0200 |
---|---|---|
committer | uruk | 2014-08-03 11:53:28 +0200 |
commit | 241d07ff07c0002481fb81938066c675c5139df5 (patch) | |
tree | b37af8ac42d1c1d3d9810560eb63e261d025f217 /engines/cge2 | |
parent | 8eae09afcac8c33ac0d7c8282001692f4f6df749 (diff) | |
download | scummvm-rg350-241d07ff07c0002481fb81938066c675c5139df5.tar.gz scummvm-rg350-241d07ff07c0002481fb81938066c675c5139df5.tar.bz2 scummvm-rg350-241d07ff07c0002481fb81938066c675c5139df5.zip |
CGE2: Silence GCC warning concerning destructors of Choice's children.
Diffstat (limited to 'engines/cge2')
-rw-r--r-- | engines/cge2/vmenu.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/cge2/vmenu.h b/engines/cge2/vmenu.h index 60796e750a..f34812dcf4 100644 --- a/engines/cge2/vmenu.h +++ b/engines/cge2/vmenu.h @@ -47,6 +47,7 @@ public: virtual void proc() = 0; Choice(CGE2Engine *vm); + virtual ~Choice() {}; }; class ExitGameChoice : public Choice { |