aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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);
}
};