| 2889 | |
| 2890 | template<class T> |
| 2891 | forceinline void |
| 2892 | Space::free(T* b, long unsigned int n) { |
| 2893 | for (long unsigned int i=0; i<n; i++) |
| 2894 | b[i].~T(); |
| 2895 | rfree(b,n*sizeof(T)); |
| 2896 | } |
| 2897 | template<class T> |
| 2898 | forceinline void |
| 2899 | Space::free(T* b, long int n) { |