From ba016168b6a267658e00e5b5aeb5b943f8bd55ec Mon Sep 17 00:00:00 2001 From: fallenoak Date: Tue, 8 Dec 2020 23:29:45 -0600 Subject: [PATCH] chore(array): improve parameter name --- storm/array/TSBaseArray.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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