Commit dd0f469d authored by paul.lind's avatar paul.lind Committed by Commit bot

Fix another -Wsign-compare bug with GCC 4.9.2.

BUG=

Review URL: https://codereview.chromium.org/1147923002

Cr-Commit-Position: refs/heads/master@{#28498}
parent 2fa664fb
......@@ -6936,8 +6936,8 @@ bool Isolate::GetHeapObjectStatisticsAtLastGC(
size_t object_size = heap->object_size_last_gc(type_index);
if (!heap->GetObjectTypeName(type_index, &object_type, &object_sub_type)) {
// There should be no objects counted when the type is unknown.
DCHECK_EQ(object_count, 0);
DCHECK_EQ(object_size, 0);
DCHECK_EQ(object_count, 0U);
DCHECK_EQ(object_size, 0U);
return false;
}
......
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