Index: src/inspector/V8InternalValueType.cpp |
diff --git a/src/inspector/V8InternalValueType.cpp b/src/inspector/V8InternalValueType.cpp |
index 10da302f78b1fdf53a29549300bc50c4366ea6b0..2eade4ff56d3b3272c135ba16826d39ec2495fa0 100644 |
--- a/src/inspector/V8InternalValueType.cpp |
+++ b/src/inspector/V8InternalValueType.cpp |
@@ -49,7 +49,7 @@ |
v8::Isolate* isolate = context->GetIsolate(); |
v8::Local<v8::Private> privateValue = internalSubtypePrivate(isolate); |
v8::Local<v8::String> subtype = subtypeForInternalType(isolate, type); |
- for (uint32_t i = 0; i < array->Length(); ++i) { |
+ for (size_t i = 0; i < array->Length(); ++i) { |
v8::Local<v8::Value> entry; |
if (!array->Get(context, i).ToLocal(&entry) || !entry->IsObject()) |
return false; |