Thanks to visit codestin.com Credit goes to github.com
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 66fb059 commit 0b432b9Copy full SHA for 0b432b9
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