| Index: src/api.cc
|
| diff --git a/src/api.cc b/src/api.cc
|
| index a68823822142cd8cbbfd8358bf61214624b276a0..202fec6b111f0c99458e3a78dc973fbcdbb4c050 100644
|
| --- a/src/api.cc
|
| +++ b/src/api.cc
|
| @@ -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;
|
| }
|
|
|
|
|