From e05250915b4e578a88828ece32d7996450a03f6f Mon Sep 17 00:00:00 2001 From: Andrew Hutchings Date: Thu, 19 Jul 2018 09:29:06 +0100 Subject: [PATCH] MCOL-1545 Remove getPool call. It is completely unused and it breaks compiling in GCC 8.1 --- utils/common/simpleallocator.h | 1 - 1 file changed, 1 deletion(-) 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;