From 6be9bf3cfc0d856b6c2535d9eb91264c77fe653e Mon Sep 17 00:00:00 2001 From: Darrell Anderson Date: Wed, 11 Apr 2012 09:24:15 -0500 Subject: [PATCH] Updated to build with gcc 4.7. --- kiten/dict.h | 4 ++-- 1 file 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 Array::Array(T *d, int s) , data(d) , dataSize(s) { - setRawData(data, dataSize / sizeof(T)); + this->setRawData(data, dataSize / sizeof(T)); } template Array::~Array() { - resetRawData(data, dataSize / sizeof(T)); + this->resetRawData(data, dataSize / sizeof(T)); } // File manages all the files, pointers, and memory management associated