Index: Source/bindings/tests/results/V8TestSpecialOperationsIdentifierRaisesException.cpp |
diff --git a/Source/bindings/tests/results/V8TestSpecialOperationsIdentifierRaisesException.cpp b/Source/bindings/tests/results/V8TestSpecialOperationsIdentifierRaisesException.cpp |
index 5d3b3b8f7f094e2060afadd0417e138433fb76db..59705ad7f969e46c15b0717409b6fb7d1c73ae6d 100644 |
--- a/Source/bindings/tests/results/V8TestSpecialOperationsIdentifierRaisesException.cpp |
+++ b/Source/bindings/tests/results/V8TestSpecialOperationsIdentifierRaisesException.cpp |
@@ -221,7 +221,7 @@ static void indexedPropertyGetter(uint32_t index, const v8::PropertyCallbackInfo |
return; |
if (!result) |
return; |
- v8SetReturnValueFast(info, result.release(), imp); |
+ v8SetReturnValueFast(info, WTF::getPtr(result.release()), imp); |
} |
static void indexedPropertyGetterCallback(uint32_t index, const v8::PropertyCallbackInfo<v8::Value>& info) |
@@ -285,7 +285,7 @@ static void namedPropertyGetter(v8::Local<v8::String> name, const v8::PropertyCa |
return; |
if (!result) |
return; |
- v8SetReturnValueFast(info, result.release(), imp); |
+ v8SetReturnValueFast(info, WTF::getPtr(result.release()), imp); |
} |
static void namedPropertyGetterCallback(v8::Local<v8::String> name, const v8::PropertyCallbackInfo<v8::Value>& info) |