| 69 | |
| 70 | |
| 71 | template <class T> Array<T>::~Array() |
| 72 | { |
| 73 | if (Buffer!=NULL) |
| 74 | { |
| 75 | if (Secure) |
| 76 | cleandata(Buffer,AllocSize*sizeof(T)); |
| 77 | free(Buffer); |
| 78 | } |
| 79 | } |
| 80 | |
| 81 | |
| 82 | template <class T> inline T& Array<T>::operator [](size_t Item) const |
nothing calls this directly
no test coverage detected