diff options
author | Alejandro Marzini | 2010-06-23 22:02:00 +0000 |
---|---|---|
committer | Alejandro Marzini | 2010-06-23 22:02:00 +0000 |
commit | 3029e505286acc0ca2c65f0a6c009643fa39bdd8 (patch) | |
tree | 9cb9e429e83ef908aa60669fd8b7bf8d38df3ae8 /backends/platform/sdl/posix/posix.h | |
parent | 3af9282c1943b3a8a2e2dbb992bbeb863e2430aa (diff) | |
download | scummvm-rg350-3029e505286acc0ca2c65f0a6c009643fa39bdd8.tar.gz scummvm-rg350-3029e505286acc0ca2c65f0a6c009643fa39bdd8.tar.bz2 scummvm-rg350-3029e505286acc0ca2c65f0a6c009643fa39bdd8.zip |
Fixed Posix port problem with destructor and configure.
svn-id: r50194
Diffstat (limited to 'backends/platform/sdl/posix/posix.h')
-rw-r--r-- | backends/platform/sdl/posix/posix.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/platform/sdl/posix/posix.h b/backends/platform/sdl/posix/posix.h index 5d8098b31c..2e87709598 100644 --- a/backends/platform/sdl/posix/posix.h +++ b/backends/platform/sdl/posix/posix.h @@ -31,7 +31,7 @@ class OSystem_POSIX : public OSystem_SDL { public: OSystem_POSIX(); - virtual ~OSystem_POSIX(); + virtual ~OSystem_POSIX() {} virtual void initBackend(); |