diff options
Diffstat (limited to 'Source/JavaScriptCore/runtime/JSSegmentedVariableObject.h')
-rw-r--r-- | Source/JavaScriptCore/runtime/JSSegmentedVariableObject.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/Source/JavaScriptCore/runtime/JSSegmentedVariableObject.h b/Source/JavaScriptCore/runtime/JSSegmentedVariableObject.h index 1fd96c17a..3a6f625ce 100644 --- a/Source/JavaScriptCore/runtime/JSSegmentedVariableObject.h +++ b/Source/JavaScriptCore/runtime/JSSegmentedVariableObject.h @@ -35,7 +35,6 @@ #include "SymbolTable.h" #include <wtf/OwnArrayPtr.h> #include <wtf/SegmentedVector.h> -#include <wtf/UnusedParam.h> namespace JSC { @@ -82,14 +81,14 @@ public: protected: static const unsigned StructureFlags = OverridesVisitChildren | JSSymbolTableObject::StructureFlags; - JSSegmentedVariableObject(JSGlobalData& globalData, Structure* structure, JSScope* scope) - : JSSymbolTableObject(globalData, structure, scope) + JSSegmentedVariableObject(VM& vm, Structure* structure, JSScope* scope) + : JSSymbolTableObject(vm, structure, scope) { } - void finishCreation(JSGlobalData& globalData) + void finishCreation(VM& vm) { - Base::finishCreation(globalData); + Base::finishCreation(vm); } SegmentedVector<WriteBarrier<Unknown>, 16> m_registers; |