зеркало из https://github.com/mozilla/gecko-dev.git
Bug 781046. Make the Create() functions in TypedArray.h take a const data array, since they make a copy anyway. r=bzbarsky
This commit is contained in:
Родитель
cc86c6a349
Коммит
50a2b14927
|
@ -64,7 +64,7 @@ struct TypedArray : public TypedArray_base<T,UnboxArray> {
|
|||
|
||||
static inline JSObject*
|
||||
Create(JSContext* cx, nsWrapperCache* creator, uint32_t length,
|
||||
T* data = NULL) {
|
||||
const T* data = NULL) {
|
||||
JSObject* creatorWrapper;
|
||||
JSAutoEnterCompartment ac;
|
||||
if (creator && (creatorWrapper = creator->GetWrapperPreserveColor())) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче