aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFilippos Karapetis2009-12-07 09:53:44 +0000
committerFilippos Karapetis2009-12-07 09:53:44 +0000
commit2797a3bd9ddc457aa2488e6129f4ce97df6fa7fe (patch)
tree3c0e68e85aab554ffda796f09791dd30977b43ea
parentebde568fe292475245fe6ec865b3286d3e27c7e6 (diff)
downloadscummvm-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.h2
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);
}
};