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

svn-id: r46273
This commit is contained in:
Filippos Karapetis 2009-12-07 09:53:44 +00:00
parent ebde568fe2
commit 2797a3bd9d

View File

@ -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);
}
};