summaryrefslogtreecommitdiffstats
path: root/JavaScriptCore/runtime/BooleanObject.h
diff options
context:
space:
mode:
Diffstat (limited to 'JavaScriptCore/runtime/BooleanObject.h')
-rw-r--r--JavaScriptCore/runtime/BooleanObject.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/JavaScriptCore/runtime/BooleanObject.h b/JavaScriptCore/runtime/BooleanObject.h
index 5963b28..68941e3 100644
--- a/JavaScriptCore/runtime/BooleanObject.h
+++ b/JavaScriptCore/runtime/BooleanObject.h
@@ -27,15 +27,15 @@ namespace JSC {
class BooleanObject : public JSWrapperObject {
public:
- explicit BooleanObject(PassRefPtr<StructureID>);
+ explicit BooleanObject(PassRefPtr<Structure>);
virtual const ClassInfo* classInfo() const { return &info; }
static const ClassInfo info;
};
- BooleanObject* asBooleanObject(JSValue*);
+ BooleanObject* asBooleanObject(JSValuePtr);
- inline BooleanObject* asBooleanObject(JSValue* value)
+ inline BooleanObject* asBooleanObject(JSValuePtr value)
{
ASSERT(asObject(value)->inherits(&BooleanObject::info));
return static_cast<BooleanObject*>(asObject(value));