зеркало из https://github.com/mozilla/pjs.git
Bug 556559: Fix unsigned/signed comparison warnings in TestTArray.cpp. r=bsmedberg
This commit is contained in:
Родитель
addf7e62ea
Коммит
6da6360cec
|
@ -102,7 +102,7 @@ static PRBool test_basic_array(ElementType *data,
|
||||||
if (ary.BinaryIndexOf(ary[i]) != i)
|
if (ary.BinaryIndexOf(ary[i]) != i)
|
||||||
return PR_FALSE;
|
return PR_FALSE;
|
||||||
}
|
}
|
||||||
if (ary.BinaryIndexOf(extra) != -1)
|
if (ary.BinaryIndexOf(extra) != ary.NoIndex)
|
||||||
return PR_FALSE;
|
return PR_FALSE;
|
||||||
PRUint32 oldLen = ary.Length();
|
PRUint32 oldLen = ary.Length();
|
||||||
ary.RemoveElement(data[dataLen / 2]);
|
ary.RemoveElement(data[dataLen / 2]);
|
||||||
|
@ -315,7 +315,7 @@ static PRBool test_string_array() {
|
||||||
if (strArray.BinaryIndexOf(strArray[i]) != i)
|
if (strArray.BinaryIndexOf(strArray[i]) != i)
|
||||||
return PR_FALSE;
|
return PR_FALSE;
|
||||||
}
|
}
|
||||||
if (strArray.BinaryIndexOf(EmptyCString()) != -1)
|
if (strArray.BinaryIndexOf(EmptyCString()) != strArray.NoIndex)
|
||||||
return PR_FALSE;
|
return PR_FALSE;
|
||||||
|
|
||||||
nsCString rawArray[NS_ARRAY_LENGTH(kdata)-1];
|
nsCString rawArray[NS_ARRAY_LENGTH(kdata)-1];
|
||||||
|
@ -518,7 +518,7 @@ static PRBool test_indexof() {
|
||||||
array.AppendElement(5);
|
array.AppendElement(5);
|
||||||
array.RemoveElementAt(1);
|
array.RemoveElementAt(1);
|
||||||
// we should not find the 5!
|
// we should not find the 5!
|
||||||
return array.IndexOf(5, 1) == -1;
|
return array.IndexOf(5, 1) == array.NoIndex;
|
||||||
}
|
}
|
||||||
|
|
||||||
//----
|
//----
|
||||||
|
|
Загрузка…
Ссылка в новой задаче