| Index: Source/bindings/tests/results/core/V8TestDictionary.cpp
|
| diff --git a/Source/bindings/tests/results/core/V8TestDictionary.cpp b/Source/bindings/tests/results/core/V8TestDictionary.cpp
|
| index c024c0de0fcd01db77e27d632dda42d32c710917..c2c9f7764972024460d26035fd108fe51d37c143 100644
|
| --- a/Source/bindings/tests/results/core/V8TestDictionary.cpp
|
| +++ b/Source/bindings/tests/results/core/V8TestDictionary.cpp
|
| @@ -206,7 +206,7 @@ void V8TestDictionary::toImpl(v8::Isolate* isolate, v8::Local<v8::Value> v8Value
|
| V8StringResource<> enumMember = enumMemberValue;
|
| if (!enumMember.prepare(exceptionState))
|
| return;
|
| - static const char* validValues[] = {
|
| + const char* validValues[] = {
|
| "",
|
| "EnumValue1",
|
| "EnumValue2",
|
| @@ -230,7 +230,7 @@ void V8TestDictionary::toImpl(v8::Isolate* isolate, v8::Local<v8::Value> v8Value
|
| Vector<String> enumSequenceMember = toImplArray<Vector<String>>(enumSequenceMemberValue, 0, isolate, exceptionState);
|
| if (exceptionState.hadException())
|
| return;
|
| - static const char* validValues[] = {
|
| + const char* validValues[] = {
|
| "",
|
| "EnumValue1",
|
| "EnumValue2",
|
|
|