summaryrefslogtreecommitdiffstats
path: root/WebCore/bindings/js/JSInt8ArrayCustom.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/bindings/js/JSInt8ArrayCustom.cpp')
-rw-r--r--WebCore/bindings/js/JSInt8ArrayCustom.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/WebCore/bindings/js/JSInt8ArrayCustom.cpp b/WebCore/bindings/js/JSInt8ArrayCustom.cpp
index 3c94002..9d41694 100644
--- a/WebCore/bindings/js/JSInt8ArrayCustom.cpp
+++ b/WebCore/bindings/js/JSInt8ArrayCustom.cpp
@@ -48,9 +48,9 @@ JSC::JSValue toJS(JSC::ExecState* exec, JSDOMGlobalObject* globalObject, Int8Arr
return getDOMObjectWrapper<JSInt8Array>(exec, globalObject, object);
}
-JSC::JSValue JSInt8Array::set(JSC::ExecState* exec, JSC::ArgList const& args)
+JSC::JSValue JSInt8Array::set(JSC::ExecState* exec)
{
- return setWebGLArrayHelper(exec, impl(), args, toInt8Array);
+ return setWebGLArrayHelper(exec, impl(), toInt8Array);
}
} // namespace WebCore