[Scummvm-cvs-logs] SF.net SVN: scummvm:[49601] scummvm/branches/gsoc2010-opengl/backends/mutex /abstract-mutex.h

vgvgf at users.sourceforge.net vgvgf at users.sourceforge.net
Sat Jun 12 02:15:22 CEST 2010


Revision: 49601
          http://scummvm.svn.sourceforge.net/scummvm/?rev=49601&view=rev
Author:   vgvgf
Date:     2010-06-12 00:15:22 +0000 (Sat, 12 Jun 2010)

Log Message:
-----------
Added virtual desctructor to MutexManager.

Modified Paths:
--------------
    scummvm/branches/gsoc2010-opengl/backends/mutex/abstract-mutex.h

Modified: scummvm/branches/gsoc2010-opengl/backends/mutex/abstract-mutex.h
===================================================================
--- scummvm/branches/gsoc2010-opengl/backends/mutex/abstract-mutex.h	2010-06-11 23:04:57 UTC (rev 49600)
+++ scummvm/branches/gsoc2010-opengl/backends/mutex/abstract-mutex.h	2010-06-12 00:15:22 UTC (rev 49601)
@@ -31,6 +31,8 @@
 
 class MutexManager : Common::NonCopyable {
 public:
+	virtual ~MutexManager() {}
+
 	virtual OSystem::MutexRef createMutex() = 0;
 	virtual void lockMutex(OSystem::MutexRef mutex) = 0;
 	virtual void unlockMutex(OSystem::MutexRef mutex) = 0;


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list