Index: src/objects-inl.h |
diff --git a/src/objects-inl.h b/src/objects-inl.h |
index 89623bd02c131e0a8f0e14baf1df739e8c9c9fdc..14f152261ebbae2847d47c7f1d4baa7173254cff 100644 |
--- a/src/objects-inl.h |
+++ b/src/objects-inl.h |
@@ -1734,7 +1734,7 @@ bool Object::IsStringObjectWithCharacterAt(uint32_t index) { |
if (!js_value->value()->IsString()) return false; |
String* str = String::cast(js_value->value()); |
- if (index >= (uint32_t)str->length()) return false; |
+ if (index >= static_cast<uint32_t>(str->length())) return false; |
return true; |
} |