Remove unnecessary cast.

This commit is contained in:
Rene Gollent 2013-04-27 13:59:49 -04:00
parent 8a9423ee95
commit 874abbdaaf
1 changed files with 1 additions and 1 deletions

View File

@ -132,7 +132,7 @@ AbstractArrayValueNode::CreateChildrenInRange(int32 lowIndex,
}
// create children for the array elements
for (int32 i = lowIndex; i <= (int32)highIndex; i++) {
for (int32 i = lowIndex; i <= highIndex; i++) {
BString name(Name());
name << '[' << i << ']';
if (name.Length() <= Name().Length())