Bug 587103. Properly scope external calls in templated functions to fix compilation with some compilers. r=mrbkap

This commit is contained in:
Andew Paprocki
2011-03-22 17:19:09 -04:00
parent a0f3f7f34b
commit 3d8455a904
6 changed files with 13 additions and 13 deletions

View File

@@ -226,7 +226,7 @@ EnumerateNativeProperties(JSContext *cx, JSObject *obj, JSObject *pobj, uintN fl
}
}
Reverse(props->begin() + initialLength, props->end());
::Reverse(props->begin() + initialLength, props->end());
return true;
}