| Index: Source/bindings/v8/ScriptValue.h
|
| diff --git a/Source/bindings/v8/ScriptValue.h b/Source/bindings/v8/ScriptValue.h
|
| index 124ea110c3a81f88e4a2aef6efb7731469c3ec17..15f42b7288ee1988e39c469e7ad3fd0a24fe61ab 100644
|
| --- a/Source/bindings/v8/ScriptValue.h
|
| +++ b/Source/bindings/v8/ScriptValue.h
|
| @@ -52,7 +52,7 @@ public:
|
|
|
| ScriptValue(v8::Handle<v8::Value> value, v8::Isolate* isolate)
|
| : m_isolate(isolate)
|
| - , m_value(value.IsEmpty() ? 0 : SharedPersistent<v8::Value>::create(value, isolate))
|
| + , m_value(value.IsEmpty() ? nullptr : SharedPersistent<v8::Value>::create(value, isolate))
|
| {
|
| }
|
|
|
| @@ -151,7 +151,7 @@ public:
|
|
|
| void clear()
|
| {
|
| - m_value = 0;
|
| + m_value = nullptr;
|
| }
|
|
|
| v8::Handle<v8::Value> v8Value() const
|
|
|