[Scummvm-cvs-logs] SF.net SVN: scummvm:[46273] scummvm/trunk/common/memorypool.h

thebluegr at users.sourceforge.net thebluegr at users.sourceforge.net
Mon Dec 7 10:53:44 CET 2009


Revision: 46273
          http://scummvm.svn.sourceforge.net/scummvm/?rev=46273&view=rev
Author:   thebluegr
Date:     2009-12-07 09:53:44 +0000 (Mon, 07 Dec 2009)

Log Message:
-----------
Applied patch from patch item #2909854 in order to fix compilation when language extensions are disabled in MSVC

Modified Paths:
--------------
    scummvm/trunk/common/memorypool.h

Modified: scummvm/trunk/common/memorypool.h
===================================================================
--- scummvm/trunk/common/memorypool.h	2009-12-07 09:30:14 UTC (rev 46272)
+++ scummvm/trunk/common/memorypool.h	2009-12-07 09:53:44 UTC (rev 46273)
@@ -92,7 +92,7 @@
 public:
 	void deleteChunk(T *ptr) {
 		ptr->~T();
-		freeChunk(ptr);
+		this->freeChunk(ptr);
 	}
 };
 


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