1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-08 14:22:09 +03:00

Merge pull request #521 from mariadb-corporation/MCOL-1545

MCOL-1545
This commit is contained in:
David.Hall
2018-07-19 10:58:15 -05:00
committed by GitHub

View File

@@ -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<SimplePool> fPool;