1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-01-22 04:04:16 +00:00

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: