Construct a new object instance from the pool.
| 71 | |
| 72 | // Construct a new object instance from the pool. |
| 73 | T *Construct() { |
| 74 | base::ManualConstructor<T> *obj = GetObject(); |
| 75 | obj->Init(); |
| 76 | return obj->get(); |
| 77 | } |
| 78 | |
| 79 | template<class Arg1> |
| 80 | T *Construct(Arg1 arg1) { |