Rename "index" variable as it shadows global declaration on older systems

This commit is contained in:
Martin Szulecki
2014-05-20 17:46:06 +02:00
parent 7b59a04d94
commit 993f65b3bd
5 changed files with 24 additions and 24 deletions
+2 -2
View File
@@ -90,9 +90,9 @@ Node* Array::Clone()
return new Array(*this);
}
Node* Array::operator[](unsigned int index)
Node* Array::operator[](unsigned int array_index)
{
return _array.at(index);
return _array.at(array_index);
}
void Array::Append(Node* node)