diff --git a/storm/array/TSBaseArray.hpp b/storm/array/TSBaseArray.hpp index ea008af..abc759d 100644 --- a/storm/array/TSBaseArray.hpp +++ b/storm/array/TSBaseArray.hpp @@ -14,14 +14,14 @@ class TSBaseArray { virtual const char* MemFileName() const; virtual int32_t MemLineNo() const; - T& operator[](uint32_t i); + T& operator[](uint32_t index); uint32_t Count() const; void Clear(); }; template -T& TSBaseArray::operator[](uint32_t i) { - return this->m_data[i]; +T& TSBaseArray::operator[](uint32_t index) { + return this->m_data[index]; } template