| 454 | |
| 455 | template<class T> |
| 456 | forceinline void |
| 457 | Heap::free(T* b, long unsigned int n) { |
| 458 | for (long unsigned int i=0U; i<n; i++) |
| 459 | b[i].~T(); |
| 460 | rfree(b); |
| 461 | } |
| 462 | template<class T> |
| 463 | forceinline void |
| 464 | Heap::free(T* b, long int n) { |
no outgoing calls
no test coverage detected