roll back util/pool.hh. Not using it anymore

This commit is contained in:
Hieu Hoang 2015-10-29 19:07:29 +00:00
parent 9a68ff8da4
commit e5a5dd6379

View File

@ -25,12 +25,6 @@ class Pool {
}
}
template<typename T>
T *Allocate(size_t num = 1) {
void *ret = Allocate(sizeof(T) * num);
return (T*) ret;
}
void FreeAll();
private: