summaryrefslogtreecommitdiff
path: root/Source/JavaScriptCore/runtime/WeakMapConstructor.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/JavaScriptCore/runtime/WeakMapConstructor.h')
-rw-r--r--Source/JavaScriptCore/runtime/WeakMapConstructor.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/JavaScriptCore/runtime/WeakMapConstructor.h b/Source/JavaScriptCore/runtime/WeakMapConstructor.h
index 2fc2072d3..66edbcb16 100644
--- a/Source/JavaScriptCore/runtime/WeakMapConstructor.h
+++ b/Source/JavaScriptCore/runtime/WeakMapConstructor.h
@@ -31,13 +31,12 @@
namespace JSC {
class WeakMapPrototype;
-class GetterSetter;
class WeakMapConstructor : public InternalFunction {
public:
typedef InternalFunction Base;
- static WeakMapConstructor* create(VM& vm, Structure* structure, WeakMapPrototype* prototype, GetterSetter*)
+ static WeakMapConstructor* create(VM& vm, Structure* structure, WeakMapPrototype* prototype)
{
WeakMapConstructor* constructor = new (NotNull, allocateCell<WeakMapConstructor>(vm.heap)) WeakMapConstructor(vm, structure);
constructor->finishCreation(vm, prototype);