| 194 | |
| 195 | template<typename T> |
| 196 | static T* Allocate(const ALLOCATION_CALLBACKS& allocs) |
| 197 | { |
| 198 | return (T*)Malloc(allocs, sizeof(T), __alignof(T)); |
| 199 | } |
| 200 | template<typename T> |
| 201 | static T* AllocateArray(const ALLOCATION_CALLBACKS& allocs, size_t count) |
| 202 | { |
no test coverage detected