Index: include/v8.h |
diff --git a/include/v8.h b/include/v8.h |
index 4eb7614210fd1fb3120428e65f7c9ed97394f3b9..c9d4832086f7ee3b0264e3ccb3c6a3712dd326e3 100644 |
--- a/include/v8.h |
+++ b/include/v8.h |
@@ -2892,6 +2892,8 @@ class V8_EXPORT Object : public Value { |
* leads to undefined behavior. |
*/ |
void SetAlignedPointerInInternalField(int index, void* value); |
+ void SetAlignedPointerInInternalFields(int argc, int indices[], |
+ void* values[]); |
// Testers for local properties. |
V8_DEPRECATED("Use maybe version", bool HasOwnProperty(Local<String> key)); |
@@ -8238,7 +8240,6 @@ void* Object::GetAlignedPointerFromInternalField(int index) { |
return SlowGetAlignedPointerFromInternalField(index); |
} |
- |
String* String::Cast(v8::Value* value) { |
#ifdef V8_ENABLE_CHECKS |
CheckCast(value); |