Updated to build with gcc 4.7.

pull/1/head
Darrell Anderson 12 years ago
parent 8818f1bb3e
commit 6be9bf3cfc

@ -65,12 +65,12 @@ template<class T> Array<T>::Array(T *d, int s)
, data(d)
, dataSize(s)
{
setRawData(data, dataSize / sizeof(T));
this->setRawData(data, dataSize / sizeof(T));
}
template<class T> Array<T>::~Array()
{
resetRawData(data, dataSize / sizeof(T));
this->resetRawData(data, dataSize / sizeof(T));
}
// File manages all the files, pointers, and memory management associated

Loading…
Cancel
Save