| 580 | |
| 581 | template<class T> |
| 582 | forceinline T* |
| 583 | Heap::copy(T* d, const T* s, long unsigned int n) { |
| 584 | for (long unsigned int i=0U; i<n; i++) |
| 585 | d[i]=s[i]; |
| 586 | return d; |
| 587 | } |
| 588 | template<class T> |
| 589 | forceinline T* |
| 590 | Heap::copy(T* d, const T* s, long int n) { |