Commit c3ad232c authored by Milo Yip's avatar Milo Yip

Fixes size type in Value::operator==()

parent 98928470
......@@ -580,7 +580,7 @@ public:
case kArrayType:
if (data_.a.size != rhs.data_.a.size)
return false;
for (size_t i = 0; i < data_.a.size; i++)
for (SizeType i = 0; i < data_.a.size; i++)
if ((*this)[i] != rhs[i])
return false;
return true;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment