mirror of
https://github.com/libimobiledevice/libplist
synced 2026-06-08 15:29:34 +00:00
Rename "index" variable as it shadows global declaration on older systems
This commit is contained in:
+2
-2
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user