make sure that only *Mt method can be called for MemoryPoolMt

This commit is contained in:
orignal 2022-12-04 17:43:29 -05:00
parent 50abeea82a
commit cb73c7c72e

View file

@ -112,7 +112,7 @@ namespace util
};
template<class T>
class MemoryPoolMt: public MemoryPool<T>
class MemoryPoolMt: private MemoryPool<T>
{
public: