diff options
author | Filippos Karapetis | 2009-12-07 09:53:44 +0000 |
---|---|---|
committer | Filippos Karapetis | 2009-12-07 09:53:44 +0000 |
commit | 2797a3bd9ddc457aa2488e6129f4ce97df6fa7fe (patch) | |
tree | 3c0e68e85aab554ffda796f09791dd30977b43ea | |
parent | ebde568fe292475245fe6ec865b3286d3e27c7e6 (diff) | |
download | scummvm-rg350-2797a3bd9ddc457aa2488e6129f4ce97df6fa7fe.tar.gz scummvm-rg350-2797a3bd9ddc457aa2488e6129f4ce97df6fa7fe.tar.bz2 scummvm-rg350-2797a3bd9ddc457aa2488e6129f4ce97df6fa7fe.zip |
Applied patch from patch item #2909854 in order to fix compilation when language extensions are disabled in MSVC
svn-id: r46273
-rw-r--r-- | common/memorypool.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/memorypool.h b/common/memorypool.h index cb4d6b7180..b7996816bc 100644 --- a/common/memorypool.h +++ b/common/memorypool.h @@ -92,7 +92,7 @@ class ObjectPool : public FixedSizeMemoryPool<sizeof(T), NUM_INTERNAL_CHUNKS> { public: void deleteChunk(T *ptr) { ptr->~T(); - freeChunk(ptr); + this->freeChunk(ptr); } }; |