| 76 | |
| 77 | template<class T> |
| 78 | static T* alloc(int count) { |
| 79 | return static_cast<T*>(UntypedAllocatorT::allocate(sizeof(T) * count)); |
| 80 | } |
| 81 | |
| 82 | static void free(void* ptr) { |
| 83 | UntypedAllocatorT::deallocate(ptr); |
no outgoing calls
no test coverage detected