Index: Source/bindings/tests/results/core/UnionTypesCore.cpp |
diff --git a/Source/bindings/tests/results/core/UnionTypesCore.cpp b/Source/bindings/tests/results/core/UnionTypesCore.cpp |
index 286260759544260624d1a2c413e55831984a5fad..3b60935f99ed34ca939885b314484403d9264aff 100644 |
--- a/Source/bindings/tests/results/core/UnionTypesCore.cpp |
+++ b/Source/bindings/tests/results/core/UnionTypesCore.cpp |
@@ -920,7 +920,7 @@ void TestEnumOrDouble::setTestEnum(String value) |
{ |
ASSERT(isNull()); |
NonThrowableExceptionState exceptionState; |
- static const char* validValues[] = { |
+ const char* validValues[] = { |
"", |
"EnumValue1", |
"EnumValue2", |
@@ -986,7 +986,7 @@ void V8TestEnumOrDouble::toImpl(v8::Isolate* isolate, v8::Local<v8::Value> v8Val |
V8StringResource<> cppValue = v8Value; |
if (!cppValue.prepare(exceptionState)) |
return; |
- static const char* validValues[] = { |
+ const char* validValues[] = { |
"", |
"EnumValue1", |
"EnumValue2", |