Bug 733260: remove typedef jsuint, r=luke

This commit is contained in:
David Mandelin
2012-03-05 18:43:45 -08:00
parent 6e814621a0
commit 4038954f95
50 changed files with 201 additions and 204 deletions

View File

@@ -712,9 +712,9 @@ js_CheckForStringIndex(jsid id)
const jschar *cp = s;
const jschar *end = s + n;
jsuint index = JS7_UNDEC(*cp++);
jsuint oldIndex = 0;
jsuint c = 0;
unsigned index = JS7_UNDEC(*cp++);
unsigned oldIndex = 0;
unsigned c = 0;
if (index != 0) {
while (JS7_ISDEC(*cp)) {