diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2012-04-11 09:24:15 -0500 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2012-04-11 09:24:15 -0500 |
commit | 6be9bf3cfc0d856b6c2535d9eb91264c77fe653e (patch) | |
tree | 622b6c3f85487c2b4984be414d266b587ed5dffc /kiten/dict.h | |
parent | 8818f1bb3e98d0de0555de4c8e1ab5be3407c76d (diff) | |
download | tdeedu-6be9bf3cfc0d856b6c2535d9eb91264c77fe653e.tar.gz tdeedu-6be9bf3cfc0d856b6c2535d9eb91264c77fe653e.zip |
Updated to build with gcc 4.7.
Diffstat (limited to 'kiten/dict.h')
-rw-r--r-- | kiten/dict.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kiten/dict.h b/kiten/dict.h index 285016e3..ba815f7c 100644 --- a/kiten/dict.h +++ b/kiten/dict.h @@ -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 |