diff --git a/utils/common/simpleallocator.h b/utils/common/simpleallocator.h index 36a8678c6..4d1dce71b 100644 --- a/utils/common/simpleallocator.h +++ b/utils/common/simpleallocator.h @@ -119,7 +119,6 @@ class SimpleAllocator void construct(pointer ptr, const T& val) { new ((void *)ptr) T(val); } void destroy(pointer ptr) { ptr->T::~T(); } - SimplePool* getPool() { return fPool; } void setPool(SimplePool* pool) { fPool = pool; } boost::shared_ptr fPool;