We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed1e9ae commit 49a5e81Copy full SHA for 49a5e81
src/heap_utils.cc
@@ -245,7 +245,7 @@ class FileOutputStream : public v8::OutputStream {
245
status_ = num_bytes_written;
246
return kAbort;
247
}
248
- DCHECK_LE(num_bytes_written, buf.len);
+ DCHECK_LE(static_cast<size_t>(num_bytes_written), buf.len);
249
offset += num_bytes_written;
250
251
DCHECK_EQ(offset, size);
0 commit comments